/* _content/carmisportal/Components/Layout/MainLayout.razor.rz.scp.css */
/* Main Layout Styles */

body[b-s491rqks5e], html[b-s491rqks5e] {
    margin: 0;
    padding: 0;
    width: 90%;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
}

.row[b-s491rqks5e] {
    margin: 0;
    display: flex;
    flex-direction: row; /* Ensure proper layout */
}

.main-layout[b-s491rqks5e] {
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #f5f5f5, #e0e0e0); /* Light gray gradient */
}

.row[b-s491rqks5e] {
    flex-grow: 1;
    display: flex;
}

.sidebar[b-s491rqks5e] {
    padding: 10px;
    border-right: 1px solid #ddd;
}



.nsd-footer[b-s491rqks5e] {
    margin-top: auto;
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 10px 0;
}

/* _content/carmisportal/Components/Layout/NsdHeader.razor.rz.scp.css */
/* Header Styles */
.nsd-header[b-s207o9a513] {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1020;
}

    .nsd-header .logo[b-s207o9a513] {
        height: 50px;
    }

.header-right[b-s207o9a513] {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.profile-icon[b-s207o9a513] {
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    color: #333;
}

    .profile-icon:hover[b-s207o9a513] {
        color: #007bff;
    }

.notification-icon[b-s207o9a513] {
    position: relative;
    font-size: 1.5rem;
    color: #007bff;
    cursor: pointer;
    display:none;
}

.notification-count[b-s207o9a513] {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    padding: 2px 6px;
    z-index: 1030;
}



/* Logout Icon */
.logout-icon[b-s207o9a513] {
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

    .logout-icon:hover[b-s207o9a513] {
        color: #007bff;
    }

hr.dotted-divider[b-s207o9a513] {height:1px;border:1px dashed #dedede;}
.title-container h1[b-s207o9a513] {font-size:1.8em;margin:0px;}
.title-container h4[b-s207o9a513] {
    font-size: 1rem;
    text-align:center; 
    font-weight:normal;
    margin:0px;
}
/* _content/carmisportal/Components/Layout/NsdSidebar.razor.rz.scp.css */
/* Sidebar Styles */
.nsd-sidebar[b-7r51gccrmx] {
    background-color: #28a745; /* Green background */
    color: white;
    padding: 10px;
    height: 100vh; /* Full viewport height */
    overflow-y: auto; /* Scrollable content if needed */
    box-sizing: border-box; /* Prevent extra width due to padding */
    border-radius: 10px;
    /* Flexbox for positioning */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Push branding to the bottom */
    margin-top:10px;
   
}


    .nsd-sidebar ul[b-7r51gccrmx] {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .nsd-sidebar ul li[b-7r51gccrmx] {
            margin-bottom: 10px;
            text-align: center;
        }

            .nsd-sidebar ul li a[b-7r51gccrmx] {
                text-decoration: none;
                color: white;
                font-size: 1.1rem; /* Adjust font size */
                display: block;
                padding: 5px 10px;
                border-radius: 4px;
                transition: background-color 0.2s;
            }

                .nsd-sidebar ul li a:hover[b-7r51gccrmx] {
                    background-color: #218838;
                }

            .nsd-sidebar ul li i[b-7r51gccrmx] {
                font-size: 1.5rem; /* Adjust icon size */
                display: block;
                margin-bottom: 5px;
            }

    /* Branding Section */
    .nsd-sidebar .nsd-sidebar-branding[b-7r51gccrmx] {
        text-align: center;
        color: white;
        padding-top: 10px;
        border-top:1px solid #eee;
    }

        .nsd-sidebar .nsd-sidebar-branding img[b-7r51gccrmx] {
            height: 40px;
            margin-bottom: 10px;
        }

        .nsd-sidebar .nsd-sidebar-branding span[b-7r51gccrmx] {
            font-size: 0.9rem;
            display: block;
        }
/* _content/carmisportal/Components/Pages/Account/changepassword.razor.rz.scp.css */
.change-password-container[b-x3cq73f9wb] {
    max-width: 800px;
    margin: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.row[b-x3cq73f9wb] {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.column[b-x3cq73f9wb] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label[b-x3cq73f9wb] {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.form-control[b-x3cq73f9wb], .form-select[b-x3cq73f9wb] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.password-container[b-x3cq73f9wb] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-generate[b-x3cq73f9wb] {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .btn-generate:hover[b-x3cq73f9wb] {
        background-color: #2563eb;
    }

.password-hint[b-x3cq73f9wb] {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
}

.btn-save[b-x3cq73f9wb] {
    background-color: #007bff;
    color: white;
    font-size: 16px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

    .btn-save:hover[b-x3cq73f9wb] {
        background-color: #0056b3;
    }
/* _content/carmisportal/Components/Pages/Account/profile.razor.rz.scp.css */

.profile-settings[b-kzi4ns2stt] {
    max-width: 1200px;
    margin: 20px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-header[b-kzi4ns2stt] {
    text-align: left;
    margin-bottom: 20px;
}

.profile-image-container[b-kzi4ns2stt] {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
}

    .profile-image-container img[b-kzi4ns2stt] {
        object-fit: cover;
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }


.profile-icon[b-kzi4ns2stt] {
    font-size: 100px;
    color: #ccc;
}

.upload-button[b-kzi4ns2stt] {
    display: inline-block;
    padding: 8px 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

    .upload-button:hover[b-kzi4ns2stt] {
        background-color: #0056b3;
    }

.profile-form[b-kzi4ns2stt] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.row[b-kzi4ns2stt] {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.column[b-kzi4ns2stt] {
    flex: 1;
    min-width: 200px;
}

label[b-kzi4ns2stt] {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

input[b-kzi4ns2stt], select[b-kzi4ns2stt] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

    input:focus[b-kzi4ns2stt], select:focus[b-kzi4ns2stt] {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

.add-language[b-kzi4ns2stt] {
    margin-top: 10px;
    padding: 5px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .add-language:hover[b-kzi4ns2stt] {
        background-color: #0056b3;
    }
/* _content/carmisportal/Components/Pages/Login.razor.rz.scp.css */
.n-login-page[b-agnhwe587n] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-color: #7e57c2; /* Purple background for the right column */
}

.container-fluid[b-agnhwe587n] {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    height: 100%;
}

.row[b-agnhwe587n] {
    display: flex;
    height: 100%;
}

.n-login-column-left[b-agnhwe587n] {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px; /* Full rounding for standalone login box */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem; /* Reduced padding to decrease white space */
    max-height: 600px; /* Max height for the login box */
    max-width: 400px;
    margin: auto; /* Center the box vertically */
}

.n-login-box[b-agnhwe587n] {
    width: 100%;
    max-width: 350px; /* Reduced width to optimize spacing */
    text-align: center;
}

.n-login-logo img[b-agnhwe587n] {
    width: 260px; /* Reduced size for better proportion */
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(0.4); /* Makes the logo black */
}

.n-login-subtext[b-agnhwe587n] {
    font-size: 0.85rem; /* Slightly smaller font size */
    color: #555;
    margin-bottom: 1.5rem; /* Reduced margin */
}

.form-group[b-agnhwe587n] {
    margin-bottom: 1rem; /* Reduced margin between form groups */
}

.n-login-label[b-agnhwe587n] {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-weight: bold;
    text-align: left;
}

.input-group[b-agnhwe587n] {
    display: flex;
    align-items: center;
    position: relative;
}

    .input-group .form-control[b-agnhwe587n] {
        flex: 1;
        padding-right: 0; /* No padding to separate controls */
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .input-group .eye-icon-button[b-agnhwe587n] {
        height: 100%;
        border: 1px solid #ddd;
        background: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1rem;
        color: #666;
        border-left: none;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

        .input-group .eye-icon-button i[b-agnhwe587n] {
            font-size: 1rem; /* Adjust icon size */
        }

.form-control[b-agnhwe587n] {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-check[b-agnhwe587n] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.form-check-input[b-agnhwe587n] {
    margin-right: 0.5rem;
}

.btn-primary[b-agnhwe587n] {
    background-color: #007bff;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
}

    .btn-primary:hover[b-agnhwe587n] {
        background-color: #0056b3;
    }

.n-login-forgot-password[b-agnhwe587n] {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem; /* Slightly smaller font size */
    color: #007bff;
    text-decoration: none;
}

    .n-login-forgot-password:hover[b-agnhwe587n] {
        text-decoration: underline;
    }

.n-login-help-text[b-agnhwe587n] {
    font-size: 0.85rem; /* Slightly smaller font size */
    color: #555;
    margin-top: 1rem;
}

.n-login-footer[b-agnhwe587n] {
    margin-top: 1.5rem; /* Reduced top margin */
    font-size: 0.75rem; /* Slightly smaller font size */
    color: #888;
}

.n-login-footer-link[b-agnhwe587n] {
    color: #007bff;
    text-decoration: none;
    margin: 0 0.5rem;
}

    .n-login-footer-link:hover[b-agnhwe587n] {
        text-decoration: underline;
    }

.n-login-column-right[b-agnhwe587n] {
    flex: 1;
    background-color: #7e57c2; /* Purple background */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px; /* Full rounding for right column */
}

@media (max-width: 768px) {
    .n-login-column-right[b-agnhwe587n] {
        display: none !important; /* Use Bootstrap class alternative */
    }
}

@media (max-width: 576px) {
    .n-login-column-right[b-agnhwe587n] {
        display: none !important; /* Use Bootstrap class alternative */
    }
}

.input-group:hover .eye-icon-button[b-agnhwe587n] {
    visibility: visible; /* Ensure button is always visible */
}
/* _content/carmisportal/Components/Pages/Mentorship/Mentorcertificate.razor.rz.scp.css */
.certificate-container[b-ru8y1vf2z4] {
    background: #fff;
    border: 1px solid #ddd;
    padding: 40px;
    text-align: center;
    width: 800px;
    margin: 50px auto;
    font-family: 'Arial', sans-serif;
}

.certificate-design[b-ru8y1vf2z4] {
    width: 800px;
    height: 600px;
    padding: 20px;
    background: linear-gradient(to bottom, #f7f7f7, #e6d9c3); /* Light to warm gradient */
    border: 5px solid #b88a44; /* Gold border */
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: 'Georgia', serif;
    position: relative;
}


.program-title[b-ru8y1vf2z4] {
    font-size: 26px;
    font-weight: bold;
    color: #2b579a;
}

.completion-title[b-ru8y1vf2z4] {
    font-size: 20px;
    margin-bottom: 20px;
    color: #666;
}

.presented-to-label[b-ru8y1vf2z4] {
    font-size: 16px;
    margin-top: 30px;
    color: #333;
    font-weight: bold;
}

.recipient-name[b-ru8y1vf2z4] {
    font-size: 24px;
    font-style: italic;
    color: #000;
    margin: 10px 0;
}

.completion-text[b-ru8y1vf2z4] {
    font-size: 18px;
    color: #555;
    margin: 20px 0;
}

.signatures[b-ru8y1vf2z4] {
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
}

.signature[b-ru8y1vf2z4] {
    text-align: center;
}

.designation[b-ru8y1vf2z4] {
    font-size: 12px;
    color: #888;
}

.logos[b-ru8y1vf2z4] {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.logo[b-ru8y1vf2z4] {
    height: 100px;
    margin: 0 20px;
}

.action-buttons[b-ru8y1vf2z4] {
    text-align: center;
    margin-top: 30px;
}

    .action-buttons button[b-ru8y1vf2z4] {
        background-color: #0078d4;
        color: white;
        border: none;
        padding: 10px 20px;
        margin: 5px;
        cursor: pointer;
    }
/* _content/carmisportal/Components/Pages/Mentorship/Mentorchecklist.razor.rz.scp.css */
/* Mentor Checklist Styles */

.mentor-checklist-container[b-hy8p3642sd] {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px; /* 20px auto - use thsi if want content in center*/
    max-width: 1200px;
}

.mentor-checklist[b-hy8p3642sd] {
    font-family: Arial, sans-serif;
    width: 100%;
}

.checklist-table[b-hy8p3642sd] {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

    .checklist-table th[b-hy8p3642sd], .checklist-table td[b-hy8p3642sd] {
        border: 1px solid #ccc;
        padding: 10px;
        text-align: left;
    }

    .checklist-table th[b-hy8p3642sd] {
        background-color: #28a745;
        color: #fff;
        font-weight: bold;
    }

    .checklist-table td input[type="date"][b-hy8p3642sd],
    .checklist-table td select[b-hy8p3642sd],
    .checklist-table td textarea[b-hy8p3642sd] {
        width: 100%;
        padding: 8px;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .checklist-table td textarea[b-hy8p3642sd] {
        resize: vertical;
    }

.outcome-section[b-hy8p3642sd] {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

    .outcome-section h3[b-hy8p3642sd] {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
    }

.outcome-textarea[b-hy8p3642sd] {
    width: 100%;
    height: 300px; /* Ensures it is a large area */
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none; /* Prevents resizing if not desired */
    box-sizing: border-box; /* Includes padding in width/height calculations */
}
/* _content/carmisportal/Components/Pages/Mentorship/Mentordash.razor.rz.scp.css */
.profile-card-container[b-aazpod8g3o] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    padding: 20px;
}


/* Responsive Layout */
@media screen and (min-width: 1200px) {
    .profile-card-container[b-aazpod8g3o] {
        grid-template-columns: repeat(2, 1fr); /* Show 3 cards in one row on large screens */
    }
}

@media screen and (max-width: 1199px) {
    .profile-card-container[b-aazpod8g3o] {
        grid-template-columns: repeat(1, 1fr); /* Show 2 cards per row for medium screens */
    }
}

@media screen and (max-width: 768px) {
    .profile-card-container[b-aazpod8g3o] {
        grid-template-columns: 1fr; /* Stack cards one below the other on smaller screens */
    }
}
/* _content/carmisportal/Components/Pages/Mentorship/Mentormatches.razor.rz.scp.css */
/* Mentormatches.razor.css */
.container[b-tfyzztmofh] {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
    max-width: 1200px;
}

    .container .table-dark[b-tfyzztmofh] {
        --bs-table-bg: #28a745; /* Example: Light gray background */
        --bs-table-border-color: #f9f9f9;
       
    }

    .table-striped[b-tfyzztmofh]
    {
        margin-top:20px;
    }

        .table-striped tbody tr[b-tfyzztmofh]
        {
            vertical-align:middle;
        }

        .table-striped tbody tr:nth-of-type(odd)[b-tfyzztmofh] {
            background-color: #f9f9f9;
        }

.table-striped tbody tr:hover[b-tfyzztmofh] {
    background-color: #f1f1f1;
    
}

.btn-primary[b-tfyzztmofh] {
    background-color: #28a745;
    border-color: #28a745;
    text-decoration: none;
    padding: 0.375rem 0.75rem;
    border-radius: 0.2rem;
    transition: background-color 0.2s ease-in-out;
}

    .btn-primary:hover[b-tfyzztmofh] {
        background-color: #0056b3;
        border-color: #0056b3;
    }

/* _content/carmisportal/Components/Pages/Mentorship/Mentortraining.razor.rz.scp.css */
/* _content/carmisportal/Components/Pages/UserControls/UcProfilecard.razor.rz.scp.css */
.profile-card[b-m2shukk7lb] {
    display: flex;
    justify-content: space-between;
    max-width: 700px; /* Fixed max width */
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    /* Alternate color for even cards */
    .profile-card:nth-child(even)[b-m2shukk7lb] {
        background: linear-gradient(to bottom, #e6f7ff, #d9f3ff); /* Light blue gradient */
    }

    /* Alternate color for odd cards */
    .profile-card:nth-child(odd)[b-m2shukk7lb] {
        background: linear-gradient(to bottom, #f9f9f9, #eaeaea); /* Default light gray gradient */
    }

.profile-left[b-m2shukk7lb] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.avatar i[b-m2shukk7lb] {
    font-size: 3rem;
    color: #ccc;
}

.details h3[b-m2shukk7lb] {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.details p[b-m2shukk7lb] {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #666;
}

.social-links a[b-m2shukk7lb] {
    margin: 0 5px;
    color: #0077b5;
    font-size: 1.5rem;
}

.profile-right[b-m2shukk7lb] {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
    border-left: 1px solid #dedede;
}

.progress-row[b-m2shukk7lb] {
    display: flex;
    flex-direction: column; /* Stack text and progress bar vertically */
    gap: 10px;
}

.progress-row h4[b-m2shukk7lb] {
    text-transform:uppercase;
    font-size:1rem;
}
.progress-bar-container[b-m2shukk7lb] {
    display: flex;
    flex-direction: row; /* Ensure bar and percentage stay in one row */
    align-items: center;
    gap: 10px;
    width: 100%; /* Ensure full width */
}

.progress-bar[b-m2shukk7lb] {
    flex: 1;
    background: #ddd;
    height: 20px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

    .progress-bar .progress[b-m2shukk7lb] {
        background: repeating-linear-gradient( 45deg, #28a745, #28a745 10px, #34d058 10px, #34d058 20px );
        height: 100%;
        border-radius: 5px;
    }

.progress-percentage[b-m2shukk7lb] {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}
.icons-row[b-m2shukk7lb] {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    border-top: 1px solid #dedede;
    padding-top: 5%;
}

    .icons-row .icon[b-m2shukk7lb] {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.9rem;
        transition: transform 0.3s ease; /* Smooth transition for movement */
        text-transform: uppercase;
    }

        .icons-row .icon a[b-m2shukk7lb] {
            text-decoration: none; /* Remove underline */
            display: flex;
            flex-direction: column;
            align-items: center; /* Align icon and text together */
            color: #333; /* Default color */
            transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition for color and movement */
        }

            .icons-row .icon a:hover[b-m2shukk7lb] {
                color: #28a745; /* Change color of both icon and text on hover */
                transform: translateY(-5px); /* Move icon and text up together */
            }

                .icons-row .icon a:hover span[b-m2shukk7lb] {
                                        color: #28a745; /* Ensure span changes color on hover */
                }

        .icons-row .icon i[b-m2shukk7lb] {
            font-size: 2.5rem;
            margin-bottom: 5px;
        }

        .icons-row .icon span[b-m2shukk7lb] {
            font-size: 0.9rem;
            margin-top: 5px;
            color: inherit; /* Inherit color from parent <a> */
        }

