/* /Components/ApplicantProfileImage.razor.rz.scp.css */
.dashboard-avatar-circle[b-bk92j7l2oe] {
    position: absolute;
    cursor:pointer;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #0A65CC;
    opacity: 1;
    right: 0;
    bottom: 0;
}
/* /Components/CandidateNote.razor.rz.scp.css */
.candidate-note[b-1dpiqpit3e] {
    color: #846D58;
}
/* /Components/FormFooter.razor.rz.scp.css */
.footer-wrapper[b-81z3vpw5jo] {
    background-color: #485261;
    color: white;
    padding: 20px 0;
}

/* Logo and Divider Section */
.logo-divider-section[b-81z3vpw5jo] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    margin-bottom: 20px;
}

.logo-container[b-81z3vpw5jo] {
    margin-bottom: 10px;
}

.footer-logo[b-81z3vpw5jo] {
    height: 60px;
    width: auto;
    display: block;
}

.full-width-divider[b-81z3vpw5jo] {
    border: none;
    border-top: 1px solid white;
    width: 100%;
    margin: 0;
    opacity: 0.8;
}

/* Content Section */
.content-section[b-81z3vpw5jo] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Left Side - Contact Info */
.contact-info-left[b-81z3vpw5jo] {
    flex: 1;
}

.phone-text[b-81z3vpw5jo] {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}

.copyright-section small[b-81z3vpw5jo] {
    font-size: 12px;
    line-height: 1.4;
}

/* Right Side - Social Media */
.social-info-right[b-81z3vpw5jo] {
    flex-shrink: 0;
    text-align: right;
}

.find-us-text[b-81z3vpw5jo] {
    font-size: 11px;
    letter-spacing: 1px;
    color: #ccc;
    margin-bottom: 10px;
    font-weight: 500;
}

.linkedin-follow-container[b-81z3vpw5jo] {
    border-radius: 3px;
    overflow: hidden;
    width: 90px;
    margin-left: auto;
}

.follow-button[b-81z3vpw5jo] {
    background-color: #0a66c2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    gap: 6px;
}

    .follow-button:hover[b-81z3vpw5jo] {
        background-color: #004182;
    }

.linkedin-icon[b-81z3vpw5jo] {
    width: 16px;
    height: 16px;
    fill: white;
}

.follower-count[b-81z3vpw5jo] {
    background-color: white;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
    border-top: 1px solid #e9e5df;
}

/* Responsive */
@media (max-width: 992px) {
    .logo-divider-section[b-81z3vpw5jo],
    .content-section[b-81z3vpw5jo] {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .logo-divider-section[b-81z3vpw5jo],
    .content-section[b-81z3vpw5jo] {
        padding: 0 20px;
    }

    .content-section[b-81z3vpw5jo] {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .social-info-right[b-81z3vpw5jo] {
        text-align: right; /* Keep right alignment on mobile */
        width: 100%; /* Ensure it takes full width */
        display: flex;
        flex-direction: column;
        align-items: flex-end; /* Align children to the right */
    }

    .find-us-text[b-81z3vpw5jo] {
        text-align: right; /* Keep the text aligned right */
    }

    .linkedin-follow-container[b-81z3vpw5jo] {
        margin-left: auto; /* Ensure it stays on the right */
        margin-right: 0;
    }

    .linkedin-wrapper[b-81z3vpw5jo] {
        justify-content: flex-end; /* Change from flex-start to flex-end */
    }
}

@media (max-width: 576px) {
    .logo-divider-section[b-81z3vpw5jo],
    .content-section[b-81z3vpw5jo] {
        padding: 0 15px;
    }

    .footer-logo[b-81z3vpw5jo] {
        height: 45px;
    }

    .phone-text[b-81z3vpw5jo] {
        font-size: 13px;
    }

    .copyright-section small[b-81z3vpw5jo] {
        font-size: 11px;
    }
}
/* /Components/FormHeader.razor.rz.scp.css */
.header-wrapper[b-mh7uk0rtwt] {
    min-height: 300px;
    position: relative;
    overflow: visible; /* Changed from hidden to allow overlap */
    z-index: 1; /* Base layer */
}

/* Background Image */
.header-bg[b-mh7uk0rtwt] {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Logo Container */
.logo-wrapper[b-mh7uk0rtwt] {
    position: absolute;
    top: 1.5rem;
    left: 16%;
    z-index: 2;
}

/* Logo Image */
.logo-img[b-mh7uk0rtwt] {
    max-height: 70px;
    height: auto;
    width: auto;
    display: block;
}
 
/* Heading Text */
.heading-text[b-mh7uk0rtwt] {
    position: absolute;
    top: 120px;
    left: 16%;
    max-width: 400px;
    color: white;
    z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-wrapper[b-mh7uk0rtwt] {
        min-height: 280px;
    }

    .logo-wrapper[b-mh7uk0rtwt],
    .heading-text[b-mh7uk0rtwt] {
        left: 8%;
    }

    .heading-text[b-mh7uk0rtwt] {
        top: 110px;
        max-width: 260px;
    }

    .logo-img[b-mh7uk0rtwt] {
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .header-wrapper[b-mh7uk0rtwt] {
        min-height: 260px;
    }

    .logo-wrapper[b-mh7uk0rtwt],
    .heading-text[b-mh7uk0rtwt] {
        left: 6%;
    }

    .heading-text[b-mh7uk0rtwt] {
        top: 100px;
        max-width: 240px;
    }

    .logo-img[b-mh7uk0rtwt] {
        max-height: 50px;
    }
}
/* /Components/FormNote.razor.rz.scp.css */
.form-note[b-uia6pk2jtw] {
    color: #0C213C;
}
/* /Components/LeaderCommunityResourcesScreen.razor.rz.scp.css */
html[b-3zzqighype], body[b-3zzqighype] {
    overflow: hidden !important;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

/* Container for the whole page */
.iframe-container[b-3zzqighype] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Wrapper for the iframe to ensure it keeps same width as home-container */
.iframe-wrapper[b-3zzqighype] {
    flex-grow: 1;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
}

    /* Override default styles for iframe's home-container */
    .iframe-wrapper .home-container[b-3zzqighype] {
        height: 100%;
        overflow: hidden;
    }
/* /Components/LinkTrackingState.razor.rz.scp.css */
.card-hover[b-vgpilnqywi] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .card-hover:hover[b-vgpilnqywi] {
        transform: scale(1.03);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
/* /Components/RegisterCard.razor.rz.scp.css */
.required-text[b-wkvakvv8uf] {
    color: #0C213C;
}

.upload-area[b-wkvakvv8uf] {
    border-style: dashed !important;
    cursor: pointer;
}

.form-bg[b-wkvakvv8uf] {
    background-color: #DEDEDE;
    padding: 2rem;
}

.form-card[b-wkvakvv8uf] {
    position: relative;
    margin-top: -90px;
    z-index: 10;
}

.custom-hr[b-wkvakvv8uf] {
    height: 4px;
    background-color: #D9D9D9;
    opacity: 1;
    border: none;
}
/* /Components/SubmissionComplete.razor.rz.scp.css */
.required-text[b-3gjm470ylx] {
    color: #0C213C;
}
.submission-text[b-3gjm470ylx] {
    color: #5F7582;
}
.submission-process-image[b-3gjm470ylx] {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
    margin: 0 auto;
}

.submission-container[b-3gjm470ylx] {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* This is key */
}

.submission-header h1[b-3gjm470ylx],
.submission-header h5[b-3gjm470ylx] {
    margin: 0;
}

.submission-text[b-3gjm470ylx] {
    text-align: justify;
    color: #5F7582;
}

.submission-actions .submission-exit-btn[b-3gjm470ylx] {
    padding: 0.5rem 2rem;
}

.required-text[b-3gjm470ylx] {
    color: #0C213C;
}
/* /Pages/AdminDashboard.razor.rz.scp.css */
.card-outlook[b-7l27ckwy8d] {
    background: #D1C4B8;
    border-radius: 33px;
    max-height: 228px;
    height: 228px;
}

.card-inlook[b-7l27ckwy8d] {
    font-family: Inter;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 2%;
    text-align: center;
}

    .card-inlook span[b-7l27ckwy8d] {
        font-family: Georgia;
        font-weight: 700;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 2%;
        text-align: center;
    }

.card-data[b-7l27ckwy8d] {
    font-family: Inter;
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 2%;
    text-align: center;
}

/* Add styles for clickable cards */
.dashboard-card[b-7l27ckwy8d] {
    cursor: pointer;
}

/* Mobile view spacing for dashboard cards */
@media (max-width: 767.98px) {
    .col-md-4[b-7l27ckwy8d] {
        margin-bottom: 20px;
    }

        .col-md-4:last-child[b-7l27ckwy8d] {
            margin-bottom: 0;
        }
}

.card-hover[b-7l27ckwy8d] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .card-hover:hover[b-7l27ckwy8d] {
        transform: scale(1.03);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
/* /Pages/LeaderDashboard.razor.rz.scp.css */
.leader-dashboard-text[b-8vgl8mbq7y] {
    position: absolute;
    top: 80px;
    left: 18%;
    max-width: 300px;
    z-index: 50;
    color: white;
}

.leader-dashboard-card[b-8vgl8mbq7y] {
    position: relative;
    margin-top: -180px;
    z-index: 10;
}


.leader-dashboard-advisory-text[b-8vgl8mbq7y] {
    position: absolute;
    top: 80px;
    right: 17.5%;
    max-width: 350px;
    z-index: 50;
    color: white;
}
.advisory-note[b-8vgl8mbq7y] {
    color: #D1C4B8;
}
.custom-hr[b-8vgl8mbq7y] {
    height: 4px;
    background-color: #D9D9D9;
    opacity: 1;
    border: none;
}

/* Medium desktop and laptops */
@media (max-width: 1440px) {
    .leader-dashboard-card[b-8vgl8mbq7y] {
        position: relative;
        margin-top: -150px;
        z-index: 10;
    }
}

/* Tablets (iPad and similar) */
@media (max-width: 991px) {
    .leader-dashboard-text[b-8vgl8mbq7y] {
        left: 5%;
    }

    .leader-dashboard-advisory-text[b-8vgl8mbq7y] {
        right: 3%;
    }
}
/* /Pages/LeaderProfile.razor.rz.scp.css */
.leader-dashboard-card[b-qkkhr94xb4] {
    position: relative;
    margin-top: -357px;
    z-index: 10;
}

/* Tablet devices (portrait and landscape, width ≤ 991px) */
@media (max-width: 991px) {
    .leader-dashboard-card[b-qkkhr94xb4] {
        margin-top: -80px;
        padding: 1rem;
    }
}

/* Mobile devices (width ≤ 575px) */
@media (max-width: 575px) {
    .leader-dashboard-card[b-qkkhr94xb4] {
        margin-top: -40px;
        padding: 0.5rem;
    }

    .custom-hr[b-qkkhr94xb4] {
        height: 2px;
    }
}


.custom-hr[b-qkkhr94xb4] {
    height: 4px;
    background-color: #D9D9D9;
    opacity: 1;
    border: none;
}
/* /Pages/LinkStatsDetail.razor.rz.scp.css */
.custom-header[b-0a4rug1vk5] {
    background-color: var(--bs-secondary); /* Bootstrap secondary */
    color: white;
    white-space: nowrap;
    font-size: 11pt;
}
button.btn:focus:not(:focus-visible)[b-0a4rug1vk5] {
    outline: none;
    box-shadow: none;
}
/* /Pages/Login.razor.rz.scp.css */
.container[b-jkalgc3o5t] {
    width: 100%;
    max-width: 1465px;
}
/* Top color strip */
.login-top-bg[b-jkalgc3o5t] {
    background-color: #0C213C;
    height: 2.5rem;
}

/* Login background */
.login-background[b-jkalgc3o5t] {
    background-image: url('/images/login_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: calc(100vh - 18.2rem);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
}

/* Main content wrapper */
.login-content-wrapper[b-jkalgc3o5t] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1400px;
    padding: 3rem 4rem;
    gap: 1.5rem; /* Reduced gap between text content and login card */
    position: relative;
    z-index: 2;
}

/* Text content section (logo + heading) */
.text-content[b-jkalgc3o5t] {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column; /* Stack logo above heading text */
    align-items: flex-start;
}

/* Logo section */
.logo-section[b-jkalgc3o5t] {
    margin-bottom: 1rem; /* Space between logo and heading text */
    position: relative;
    z-index: 4;
}

.company-logo[b-jkalgc3o5t] {
    max-width: 200px;
    height: auto;
    width: 100%;
    display: block;
    position: relative;
    z-index: 5;
    opacity: 1;
    visibility: visible;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Heading text - positioned below logo and aligned with logo text */
.heading-text[b-jkalgc3o5t] {
    font-family: Georgia, serif;
    position: relative;
    z-index: 3;
    margin-left: 3.5rem; /* Approximate alignment with "BESPOKE partners" text */
    margin-top: 0;
}

    .heading-text h2[b-jkalgc3o5t] {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        line-height: 1.1;
        margin-bottom: 0.75rem;
        position: relative;
        z-index: 3;
        font-weight: 300;
    }

    .heading-text .tagline[b-jkalgc3o5t] {
        font-size: clamp(0.875rem, 1.5vw, 1.2rem);
        line-height: 1.3;
        position: relative;
        z-index: 3;
    }

/* Login card */
.login-card[b-jkalgc3o5t] {
    background-color: rgba(123, 148, 164, 0.49);
    color: white;
    border-radius: 0.5rem;
    backdrop-filter: blur(6px);
    width: 100%;
    max-width: 450px;
    min-height: 535px;
    position: relative;
    z-index: 2;
}

/* Responsive Design */

/* Large screens (4K and ultra-wide) */
@media (min-width: 1920px) {
    .login-background[b-jkalgc3o5t] {
        padding-top: 3rem;
    }

    .login-content-wrapper[b-jkalgc3o5t] {
        max-width: 1600px;
        padding: 4rem 5rem;
        gap: 2rem;
    }

    .company-logo[b-jkalgc3o5t] {
        max-width: 350px; /* Proportionally scaled from 200px base */
    }

    .heading-text[b-jkalgc3o5t] {
        margin-left: 7.5rem; /* Proportionally scaled from 3.5rem base */
    }

    .login-card[b-jkalgc3o5t] {
        max-width: 500px;
        min-height: 600px;
    }
}

/* Desktop and laptops (1200px - 1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {
    .login-background[b-jkalgc3o5t] {
        padding: 3rem;
        min-height: calc(100vh - 18.1rem);
    }
    .login-content-wrapper[b-jkalgc3o5t] {
        padding: 3rem 4rem;
        gap: 1.5rem;
    }

    .company-logo[b-jkalgc3o5t] {
        max-width: 300px; /* Keep base size */
    }

    .heading-text[b-jkalgc3o5t] {
        margin-left: 6.5rem; /* Keep base margin */
    }
}

/* Medium desktop and laptops */
@media (max-width: 1199px) {
    .login-background[b-jkalgc3o5t] {
        padding: 3rem;
        min-height: calc(100vh - 18.1rem);
    }
    .login-content-wrapper[b-jkalgc3o5t] {
        padding: 2.5rem 3rem;
        gap: 1.2rem;
    }

    .company-logo[b-jkalgc3o5t] {
        max-width: 280px; /* Slightly smaller */
    }

    .heading-text h2[b-jkalgc3o5t] {
        margin-left: 2.3rem; /* Proportionally adjusted */
        font-size: clamp(1.2rem, 4vw, 1.3rem);
    }

    .heading-text .tagline[b-jkalgc3o5t] {
        margin-left: 2.3rem; /* Proportionally adjusted */
        font-size: clamp(1rem, 4vw, 1rem);
    }
}

/* Tablets (iPad and similar) */
@media (max-width: 991px) {
    .login-background[b-jkalgc3o5t] {
        padding-top: 1.5rem;
        min-height: calc(100vh - 17.3rem);
    }

    .login-content-wrapper[b-jkalgc3o5t] {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
        align-items: center;
    }

    .text-content[b-jkalgc3o5t] {
        max-width: 100%;
        align-items: center;
    }

    .company-logo[b-jkalgc3o5t] {
        max-width: 200px; /* Keep decent size on tablets */
    }

    .heading-text[b-jkalgc3o5t] {
        margin-left: 0; /* Center align on tablets */
        text-align: center;
    }

    .login-card[b-jkalgc3o5t] {
        width: 100%;
        max-width: 500px;
        min-height: 500px;
    }
}

/* Mobile devices */
@media (max-width: 767px) {
    .login-background[b-jkalgc3o5t] {
        background-position: right center;
        padding-top: 1rem;
        min-height: calc(100vh - 10rem);
    }

    .login-content-wrapper[b-jkalgc3o5t] {
        padding: 1.5rem;
        gap: 1rem;
    }

    .company-logo[b-jkalgc3o5t] {
        max-width: 160px; /* Smaller but still visible */
    }

    .heading-text[b-jkalgc3o5t] {
        margin-left: 0; /* Center align on mobile */
    }

        .heading-text h2[b-jkalgc3o5t] {
            font-size: clamp(1.1rem, 5vw, 1.5rem);
        }

        .heading-text .tagline[b-jkalgc3o5t] {
            font-size: clamp(0.8rem, 3.5vw, 1rem);
        }

    .login-card[b-jkalgc3o5t] {
        max-width: 100%;
        padding: 1.5rem !important;
        min-height: 480px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .login-background[b-jkalgc3o5t] {
        padding-top: 0.5rem;
        min-height: calc(100vh - 21rem);
    }

    .login-content-wrapper[b-jkalgc3o5t] {
        padding: 1rem;
        gap: 0.75rem;
    }

    .company-logo[b-jkalgc3o5t] {
        max-width: 250px;
    }

    .heading-text h2[b-jkalgc3o5t] {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }

    .heading-text .tagline[b-jkalgc3o5t] {
        font-size: clamp(0.75rem, 3vw, 0.9rem);
    }

    .login-card[b-jkalgc3o5t] {
        padding: 1rem !important;
        min-height: 450px;
    }
}

/* Very small devices */
@media (max-width: 320px) {
    .login-background[b-jkalgc3o5t] {
        padding-top: 0.25rem;
        min-height: calc(100vh - 22.5rem);
    }

    .login-content-wrapper[b-jkalgc3o5t] {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .company-logo[b-jkalgc3o5t] {
        max-width: 230px;
    }

    .heading-text h2[b-jkalgc3o5t] {
        font-size: 1rem;
    }

    .heading-text .tagline[b-jkalgc3o5t] {
        font-size: 0.75rem;
    }

    .login-card[b-jkalgc3o5t] {
        min-height: 400px;
    }
}

/* Container overrides for full-width layout */
@media (max-width: 1400px) {
    .container[b-jkalgc3o5t] {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
