﻿body {
     font-family: Cairo Light !important;
    font-weight: 500;
}

.main-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full viewport height */
    min-width: 100vh;
}

.page {
    background-color: #f1d3df70 !important;

}

article.maincontent {
    flex: 1; /* Takes available space */
    overflow-y: auto; /* Adds vertical scroll when needed */
    padding: 25px; /* Optional padding for spacing */
    margin: 0px 25px;
    /*max-height: calc(100vh - 120px);*/ /* Adjust to prevent overlap with footer */
}

    article.maincontent::-webkit-scrollbar {
        width: 3px; /* Thin scrollbar width */
    }

    article.maincontent::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.0); /* Light transparent background for the track */
        border-radius: 10px; /* Optional rounded corners */
    }

    article.maincontent::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.3); /* Light transparent color for the thumb */
        border-radius: 10px; /* Optional rounded corners */
    }

        article.maincontent::-webkit-scrollbar-thumb:hover {
            background: #b6c4d6; /* Slightly darker on hover */
        }

/* For Firefox (Fallback) */
article.maincontent {
    scrollbar-width: thin; /* Makes scrollbar thin */
    scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.05); /* Thumb color | Track color */
}



a {
    color: #6c757d;
    text-decoration: none;
}



.logo {
    padding-top: 10px;
    display: flex;
    align-items: center;
}

.sidebar .logo i {
    font-size: larger;
    color: #b6c4d6;
    margin-right: 10px;
}

    .sidebar .logo i:hover {
        color: white;
    }

.sidebar .nav-links {
    padding-top: 15px;
}

    .sidebar .nav-links li {
        list-style: none;
        position: relative;
        margin-left: -16px;
        margin-right: 16px;
    }



#btn-navig {
    margin-top: -45px;
}

#nav-hr {
    margin-top: -8px;
}

/* Initial hidden state for submenu */
.nav-links .sub-menu {  
    display: none;
    list-style: none;
    padding: 3px;
    margin: 4px 0 -14px 0 !important; /* top gap */
}

/* Scrollbar styling */
.nav-links {
    max-height: 90vh; /* Limit height to viewport */
    overflow-y: auto; /* Scroll only when overflow happens */
    scrollbar-width: none; /* For Firefox - hides the scrollbar */
}

    /* For WebKit-based browsers like Chrome, Edge, Safari */
    .nav-links::-webkit-scrollbar {
        display: none; /* Hides the scrollbar */
    }

    /* Optional: Add hover visibility if you want */
    .nav-links:hover::-webkit-scrollbar {
        display: block; /* Shows the scrollbar on hover */
        width: 6px; /* Thin scrollbar */
    }

    .nav-links::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.5); /* Light scrollbar color */
        border-radius: 10px; /* Rounded scrollbar */
    }

    /* Styling for dropdown links */
    .nav-links .drplink {
        display: flex;
        align-items: center;
        padding: 10px 0px 10px 10px;
        color: #DA4FC5;
        transition: background-color 0.3s, color 0.3s;
    }

        .nav-links .drplink i {
            font-size: x-large;
            padding-right: 8.5px;
        }

        .nav-links .drplink a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: inherit; /* Inherit color from parent */
            flex-grow: 1;
            text-transform: capitalize;
            font-size: medium;
        }

        /* Hover styles for main menu items */
        .nav-links .drplink:hover {
            font-weight: bold;
            background-color: #DA4FC5;
            color: #fff;
        }

            /* Ensuring the link and icon change color on hover */
            .nav-links .drplink:hover a {
                color: #fff;
            }

            .nav-links .drplink:hover i {
                color: #fff;
            }

    /* Submenu item styles */
    .nav-links .sub-menu li {
        /*display: flex;*/
        align-items: center;
        color: #DA4FC5;
        transition: background-color 0.3s, color 0.3s;
        background-color: transparent;
        margin: 0px 0px 0px 36px; /* Indent subitems */
        padding: 0px 0px 0px 0px;
    }

        /* Submenu hover styles */
        .nav-links .sub-menu li:hover {
            
            color: #fff;
        }

        .nav-links .sub-menu li a {
            color: #DA4FC5;
            text-decoration: none;
            display: block;
            text-transform: capitalize;
            font-size: 13px;
        }

        /* Submenu link hover color */
        .nav-links .sub-menu li:hover a {
            color: #fff;
        }

    /* Active sub-menu styling: When the menu is open, apply block display */
    .nav-links .sub-menu.show {
        display: block; /* Show the submenu when the 'show' class is added */
    }



.logo {
    background-color: white;
    position: relative;
    padding-bottom: 14px;
    /*border-bottom: 2px solid #d0d7e1;
    border-radius: 0px 0px 0px 32px;*/
}

    .logo img {
        transition: opacity 0.3s, transform 0.3s;
    }

        .logo img.hidden {
            opacity: 0;
            transform: scale(0); /* Hide logo when sidebar is collapsed */
        }

    .logo i.fa-bars {
        position: relative; /* Initially relative to the logo container */
        cursor: pointer;
        transition: transform 0.3s ease, left 0.3s ease;
    }

.sidebar {
    /*    width: 260px;
    background: #f3f3f3;
    padding: 15px;*/

    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    background-color: #fff;
    transition: width 0.3s ease;
    overflow: hidden;
    margin-bottom: 10px;
}

    /* Each menu item box */
    .sidebar ul.nav-links li {
        list-style: none;
        margin-bottom: 10px;
    }

        /* Card style */
        .sidebar ul.nav-links li .drplink {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            height: 45px;
            padding: 6px 14px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        }

            /* Icon style */
            .sidebar ul.nav-links li .drplink i {
                font-size: 19px;
                color: #d44ac2;
            }

        /* Text */
/*        .sidebar ul.nav-links li .linkname {
            font-family: Cairo Light !important;
            font-size: 15px;
            font-weight: bold;
            color: #d44ac2;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }*/

        /* Text */
        .sidebar ul.nav-links li .linkname {
            font-family: Cairo Light !important;
            font-size: 16px;
            font-weight: 500;
            color: #d44ac2;
        }

        /* Hover effect */
        .sidebar ul.nav-links li .drplink:hover {
            background: linear-gradient(90deg,#d44ac2);
        }

            .sidebar ul.nav-links li .drplink:hover .linkname,
            .sidebar ul.nav-links li .drplink:hover i {
                color: white;
            }

        /* Active menu (like User Management in image) */
        .sidebar ul.nav-links li.open .drplink {
            background: linear-gradient(90deg,#d44ac2);
        }

            .sidebar ul.nav-links li.open .drplink i,
            .sidebar ul.nav-links li.open .drplink .linkname {
                color: white;
            }



    .sidebar img {
        margin-left: px;
        width: 60%;
    }

    .sidebar.collapsed {
        width: 60px; /* Collapsed width */
    }

        .sidebar.collapsed .logo i.fa-bars {
            position: absolute; /* Moves it out when collapsed */
            transform: translateY(-50%);
            left: 10%;
            bottom: 5px;
        }

        .sidebar.collapsed .drplink i {
            left: 10%;
        }
@media (min-width: 640px) {
    .page[b-zyrnbhm3cc] {
        flex-direction: row !important;
    }
}

@media(min-width: 600px) {
    .page[b-zyrnbhm3cc] {
        flex-direction: row !important;
    }
}


/* pages styless  */

.content {
    padding: 20px 0px;
}

.header {
    position: relative;
    background-color: #fff;
    padding: 20px;
    font-size: larger;
    text-transform: capitalize;
    display: block;
    justify-content: space-between;
    transition: all 0.3s ease;
    border-radius: 12px 12px 12px 12px;
}

    .header .title {
        /*        font-family: Cairo Light !important;*/
        font-family: 'CairoLight', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        color: #DA4FC5 !important;
        /* text-transform: uppercase; */
        font-size: 30px;
        font-weight: bold;
        /* text-align: justify; */
    }



.smllhead {
/*    font-family: Cairo Light !important;*/
    font-family: 'CairoLight', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-size: small;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    color: #6c757d !important;
}

.linkhead a {
    text-decoration: none;
    // color: inherit;
}

    .linkhead a:hover {
        color: black;
    }

.header .fa-compress {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #f8f9fa;
    color: #f6e1e9;
    font-size: small;
}

.header .fa-expand {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #f8f9fa;
    color: #f6e1e9;
    font-size: small;
}
.container {
    padding-top: 1.5rem;
    padding: inherit;
}

.panel-head {
    padding: 6px 5px;
    font-weight: 500;
    font-size: medium;
    text-transform: capitalize;
    color: #525151;
    display: flex;
    justify-content: space-between;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    height: 35px;
}
.panel-title-inside {
    /*    font-family: Cairo Light !important;*/
    font-family: 'CairoLight', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    padding: 6px 5px;
    font-weight: bold;
    font-size: medium;
    text-transform: capitalize;
    color: #525151;
    display: flex;
    justify-content: space-between;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    height: 35px;
}
.panel-body {
    padding: 12px 15px 10px 15px;
    background-color: white;
    height: auto;
    border-radius: 10px;
}

    .panel-body.hidden {
        max-height: 0;
        opacity: 0;
        visibility: hidden;
    }

.panel-head.collapsed {
    background-color: white;
}

.panel-body {
    opacity: 1;
    visibility: visible;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    border: 1px solid #d0cace !important;
}

.hpblue {
    /*border-top: 2px solid #BA1B51 !important;*/
}

.hpred {
    border-top: 2px solid #ff1212;
}

.hpgreen {
    border-top: 2px solid #05a95d;
}

.hpyellow {
    border-top: 2px solid #ffbf00;
}

.form-group {
    padding-top: 12px;
} 

#spacecard {
    padding-top: 40px;
}

.form-control {
    line-height: normal;
    margin-top: 3px;
    background-color: #f9fcff;
    height: 30px;
    border-radius: 10px;
}

.form-group label {
    /*    font-family: Cairo Light !important;*/
    font-family: 'CairoLight', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    color: #1c1c1c;
    font-weight: 500;
    font-size: 15px;
}

.form-control:focus {
    outline: 0;
    background: #ffffff;
    box-shadow: none;
    border: 1px solid #c7c8c9;
}

input[type=text] {
    color: grey;
    font-size: 14px;
}

input.form-control::placeholder {
    color: grey;
}

input.form-control {
    color: grey;
}

select.form-select {
    Line-height: normal;
    margin-top: 3px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid #f3c2f8;
    background-color: #f9fcff;
    color: grey;
    padding: 2px 4px;
    font-size: 14px;
}

.form-select:focus {
    outline: 0;
    background: #ffffff;
    box-shadow: none;
    border: 1px solid #c7c8c9;
}

.form-select {
    z-index: 0; /* Ensure dropdown is visible */
    visibility: visible; /* Ensure dropdown isn't hidden */
    background-color: #f9fcff;
}
/* Style for the placeholder option */
select.form-select option[value=""][disabled] {
    color: grey;
}

.btn:focus, .btn:active:focus {
    border: none;
    box-shadow: none;
    color: black;
}

.btn-danger,
.btn-success {
    padding: 2px 8px;
}

.btn-success {
    background-color: #064469;
    border: none;
}

.btn-info {
    color: white;
    width: max-content;
}

    .btn-info:hover
    .btn-info:focus,
    .btn-primary:focus
    .btn-success:hover,
    .btn-success:focus,
    .btn-dark:focus,
    .btn-dark:active,
    .btn-danger:active,
    .btn-danger:focus {
        color: white;
    }

.body-wrapper {
    height: 320px;
}

#txt1 {
    height: 60px;
}

textarea.form-control {
    color: grey;
}

#box {
    padding: 13px 0px;
    background-color: #f5f5f5;
    border-radius: 5px 5px 0px 0px;
    box-shadow: 0 4px 8px #dee2e6;
    margin-bottom: 25px;
}

#candidhead {
    color: #767676;
    padding-left: 5px;
}

.btn-sm {
    font-size: 13px;
    padding: -1px 3px;
    color: white;
    font-weight: 500;
}

.btn a {
    color: white;
}

.chat-users {
    margin: 0px 15px 0px 0px;
}

.scrollable-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.05);
}

/* txtbox with icon   */

.input-container {
    position: relative;
    width: 100%;
}

    .input-container .icon {
        position: absolute;
        left: 10px; /* Adjust left padding */
        top: 50%;
        transform: translateY(-50%);
        color: #555;
        font-size: 16px;
    }

    .input-container input {
        padding-left: 27px; /* Space for the icon */
    }

/*  table responsive just for understat*/

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5); /* Slightly darker on hover */
}

/* For Firefox */
.table-responsive {
    scrollbar-width: thin; /* Makes scrollbar thin */
    scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.05); /* Thumb color | Track color */
}
    /* WebKit-based browsers (Chrome, Safari, Edge) */
    .table-responsive::-webkit-scrollbar {
        width: 6px; /* Thin scrollbar width */
    }

    .table-responsive::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05); /* Light transparent background for the track */
    }

    .table-responsive::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.3); /* Light transparent color for the thumb */
        border-radius: 10px; /* Optional rounded corners */
    }

.table thead tr th {
    background-color: #DA4FC5;
    /* font-weight: 600; */
    color: white;
    padding: 6px 30px 6px 10px;
    font-size: 15px;
}

.table tbody tr td {
     font-family: Cairo Light !important;
    font-size: 13px;
    padding: 4px 5px;
}

.table-striped > tbody > tr:nth-of-type(even) > * {
    --bs-table-color-type: #495057;
    --bs-table-bg-type: #d0d7e15c;
}
.fa-trash {
    color: #d44ac2 !important;
}
.fa-edit {
    color: #d44ac2 !important;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-color-type: #495057; /* Text color */
    --bs-table-bg-type: white; /* Background color for odd rows (1st, 3rd, etc.) */
}


.table th {
    white-space: nowrap;
}


FF
td i {
    color: black;
    font-weight: bold;
}

.dataTables_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#show, #searchsection {
    
    align-items: center;
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

#showbtn {
    padding: 0px 5px;
    text-align: left;
    background-color: #fdfeff;
    width: 60px;
    height: 28px;
    border-radius: 3px;
    margin-left: 6px;
    border: 1px solid #eee;
}

.dataTables_paginate {
    margin-top: -15px;
}

.pagination {
    border: 1px solid darkgrey;
    display: inline-flex;
    padding-left: 0;
    margin: 12px 0;
    border-radius: 0px;
}

    .pagination li {
        border-right: 1px solid darkgreen;
        padding: 5px 15px;
    }

    .pagination a {
        text-decoration: none;
        color: black;
    }

        .pagination a:hover {
            color: darkblue;
        }

table {
    width: 100%
}

.btn-end {
    text-align: end;
    padding-bottom: 15px;
}

.height {
    padding-bottom: 25px;
}

.img-circle {
    height: 85px;
    border-radius: 50%;
}

.card-body {
    font-size: 13px;
    color: #6a6c6f;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 2px;
    padding: 15px 10px;
    position: relative;
}

.card-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.contact-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .contact-stat span {
        color: darkslategrey;
        font-weight: lighter;
        font-size: 13px;
    }

.border-right {
    border-right: 1px solid #eaeaea;
}

.m-b {
    margin-bottom: 15px;
}

.text-muted {
    --bs-text-opacity: 1;
    color: #6c757d !important;
}

.align {
    margin-top: 40px;
}

#align {
    padding-top: 20px;
}

a:hover {
    color: black;
}

#cardhead {
    font-weight: 400;
    font-size: 24px;
    color: #000000b8;
    padding-bottom: 5px;
}


.tab-content {
    padding-top: 10px;
    border: none;
    display: flex;
    flex-wrap: wrap;
}

.tabhead {
    color: #000000c2;
    font-size: 30px;
    margin-top: -20px;
    margin-bottom: 8px;
}

.panel {
    border: 1px solid #f4f4f4;
}

.text-end {
    padding-top: 35px;
}

.form-check-input[type=checkbox] {
    margin-top: 6px;
    border-color: darkgrey;
}

#smck {
    margin-top: 3px;
    font-size: smaller;
}

#center {
    text-align: center;
}

#txt {
    height: 50px;
}

.disabled-input {
    cursor: not-allowed; /* Changes the cursor to not-allowed */
}

    .disabled-input:hover {
        background-color: #f5f5f5; /* Optional: Add a hover effect for visual feedback */
    }

/* table undertable li style */
.sortable-header {
    position: relative;
    cursor: pointer;
}

    .sortable-header i {
        position: absolute;
        right: 5px;
        font-size: small;
        top: 13px;
        color: #00000063;
    }

.fa-minus-circle {
    color: red !important;
}

.fa-plus-circle {
    color: blue;
}

.details-row div {
    border-bottom: 1px solid #d6e6f6;
    padding: 5px 0px;
}

    .details-row div:last-child {
        border: none;
        padding-bottom: initial;
    }

    .details-row div:first-child {
        padding-top: initial;
    }

.details-label {
    font-weight: bold;
    font-size: 1.1em; /* Adjust the size as needed */
}

.pagination li {
    padding: 2px 10px;
}

.v-timeline {
    position: relative;
    padding: 0;
    margin-top: 2em;
    margin-bottom: 2em;
}

    .v-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 18px;
        height: 100%;
        width: 4px;
        background: #e8ebf0;
    }

.vertical-timeline-content h2 {
    font-weight: 400;
    color: #0000005c;
    letter-spacing: normal;
}

.vertical-container {
    width: 98%;
    margin: 0 auto;
}

.vertical-timeline-content:before {
    border-color: transparent;
    border-right-color: #eaeaea !important;
    border-width: 11px;
    margin-top: -11px;
}

.vertical-timeline-content:after, .vertical-timeline-content:before {
    right: 100%;
    top: 20px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.scrollable-content {
    flex: 1;
    overflow-x: hidden;
}

.body1 {
    display: flex;
    flex-direction: column;
}

.vertical-timeline-block {
    min-width: 300px;
    margin-right: 20px;
}

.vertical-timeline-block {
    position: relative;
    margin: 2em 0;
}

    .vertical-timeline-block:first-child {
        margin-top: 0;
    }

.vertical-timeline-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    border: 1px solid #eaeaea;
    text-align: center;
    background: #fff;
}

    .vertical-timeline-icon i {
        display: block;
        width: 24px;
        height: 24px;
        position: relative;
        left: 50%;
        top: 50%;
        margin-left: -12px;
        margin-top: -9px;
    }

.vertical-timeline-content {
    position: relative;
    margin-left: 60px;
    background: white;
    border-radius: .25em;
    border: 1px solid #eaeaea;
}

.p-sm {
    padding: 15px !important;
}

.vertical-timeline-content .vertical-date {
    font-weight: 500;
    text-align: right;
    font-size: 13px;
}

.panel-footer {
    font-size: small;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.vertical-timeline-content p {
    /*  margin: 1em 0 0 0; */
    line-height: 0.6;
}

.vertical-date small {
    color: #62cb31;
    font-weight: 400;
}

.pull-left {
    margin-top: -10px;
}

.pull-right {
    padding: 0px 3px;
    border-radius: 3px;
    float: right;
    font-size: x-small;
    color: white;
}

.label-success {
    background-color: #62cb31;
}

.label-info {
    background-color: darkred;
}

.label-primary {
    background-color: cadetblue
}

.label-danger {
    background-color: red;
}

.label-danger {
    background-color: red;
}

#status {
    margin-top: -15px;
}

#tbllink {
    color: blue;
}

.modal-Tcontent {
    background-color: white;
    width: 500px !important;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 20%;
    margin-left: 40%;
    padding: 0px 25px;
}

.topsection_modal {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
}

.close {
    cursor: pointer;
    font-size: larger;
    color: black;
}

.btn-primary {
    background: linear-gradient(135deg, #d44ac2, #c13bb0);
    border: none !important;
    padding: 4px 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
}
.btn-primary-pink {
    background: linear-gradient(135deg, #d44ac2, #c13bb0);
    border: none !important;
    padding: 3px 9px;
    /* color: #fff; */
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
}
    btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
        background-color: #d44ac2 !important;
        color: #fff !important;
    }

    .btn-primary:hover {
        background-color: #d44ac2;
    }

.btn-success {
    background-color: #d44ac2;
}

    btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
        background-color: #d44ac2 !important;
        color: #fff !important;
    }

    .btn-success:hover {
        background: linear-gradient(to top, #d44ac2,#d44ac2) !important;
    }

input[type=email] {
    font-size: smaller;
    padding-left: 8px;
}

.input-with-checkbox {
    position: relative;
}

    .input-with-checkbox input[type="text"] {
        padding-left: 30px; /* space for checkbox */
    }

    .input-with-checkbox input[type="checkbox"] {
        position: absolute;
        Left: 10px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }

.btn-invite {
    font-size: 10px;
    height: 20px;
    background-color: #0067b8;
    color: white;
}

    .btn-invite:hover {
        background-color: #0056b3;
        color: white;
    }

    .btn-invite:active {
        background-color: #003f7f;
        transform: scale(0.98);
    }

.label {
    display: inline-block;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
}


.text-center {
    text-align: center;
}

.send-button {
    margin-top: -50px; /* Add margin to the top of the button */
    display: flex;
    align-items: center;
    background-color: red; /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove border */
    padding: 10px 20px; /* Button padding */
    font-size: 16px; /* Button font size */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 5px; /* Rounded corners */
    float: right;
}

    .send-button i {
        margin-left: 10px; /* Space between text and icon */
    }

.message {
    width: 95%;
    height: 200px;
    margin-left: 30px;
    margin-top: 20px;
    font-size: 18px; /* Enlarges the text */
    color: grey; /* Changes the text color to grey */
    font-family: 'Matura MT Script Capitals';
    padding: 10px;
    border: 1px solid #ccc;
    resize: none;
}


/* Submenu hover styles */
.nav-links .sub-menu li:hover {
    
    color: #fff;
}
.header {
    position: relative;
    background-color: white;
    padding: 20px;
    font-size: larger;
    text-transform: capitalize;
    display: block;
    justify-content: space-between;
    transition: all 0.3s ease;
    border-radius: 12px 12px 12px 12px;
}

    .header .title {
          font-family: Cairo  !important;
        color: #DA4FC5 !important;
        /*text-transform: uppercase;*/
        font-size: 30px;
        font-weight: 500;
        /*text-align: justify;*/
    }


.smllhead {
      font-family: Cairo Light !important;
    font-size: small;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    color: #6c757d !important;
}

.header .fa-expand {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #f8f9fa;
    color: #f6e1e9;
    font-size: small;
}

.header .fa-compress {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #f8f9fa;
    color: #f6e1e9;
    font-size: small;
}

.logo {
    position: relative;
    padding-bottom: 17px;
    border-bottom: 1px solid #e1e0e0;
    background-color: #ffffff;
    border-radius: 0px 0px 0px 0px;
}

.logo {
    padding-top: 18px;
    display: flex;
    align-items: center;
}

main {
    background-color: #f5e1f2 !important;
}

.page {
    background-color: #f6e1e9 !important;
}

.sidebar {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    background-color: #f8f9fa;
    transition: width 0.3s ease;
    overflow: hidden;
    border-radius: 0px 0px 0px 0px;
}

.foot-label {
    font-size: smaller;
    color: #d44ac2;
}

.footer {
    border-top: 1px solid #d44ac2;
    background: linear-gradient(183deg, #f7fbff, transparent);
    text-align: center;
    margin-top: auto;
    padding: 8px 15px 8px 15px;
    border-left-color: white;
}

.sidebar ul.nav-links li .sub-menu li .active {
    background: linear-gradient(90deg, #d44ac2) !important;
    font-weight: bold;
    color: white !important;
}

.panel-body {
    opacity: 1;
    visibility: visible;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    /*border-top: 2px solid #bb4cc7 !important*/
}

.panel-title-inside {
    font-family: Cairo, sans-serif !important;
    padding: 6px 5px;
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    color: #000;
    display: flex;
    justify-content: space-between;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    height: 30px;
}

.text-end button {
    background: linear-gradient(135deg, #d44ac2, #c13bb0);
    border: none !important;
    padding: 4px 35px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
}

.table thead tr th {
    background-color: #d44ac2;
        font-family: Cairo Light !important;
    /* font-weight: 600; */
    color: white;
    padding: 6px 17px 6px 6px;
    font-size: 15px;
}
#showbtn {
    padding: 0px 10px;
    /* Increased horizontal padding */
    text-align: left;
    background-color: #fdfeff;
    width: 60px;
    height: 28px;
    border-radius: 3px;
    margin-left: 6px;
    margin-right: 12px;
    /* Add space to the right of the button */
    border: 1px solid #eee;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px; /* Adjusted for better layout */
    height: 90px;
    padding: 64px 32px; /* Generous padding */
    margin: 0 auto; /* Center horizontally */
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}

.form-control {
    line-height: normal;
    margin-top: 3px;
    background-color: #f9fcff;
    height: 33px;
    border-radius: 10px;
    font-size: 13px;
    border: 1px solid #f3c2f8;
}

    .form-control:focus {
        outline: 0;
        background: #ffffff;
        box-shadow: none;
        /*box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);*/
        border-color: #86b7fe;
        border: 1px solid #c7c8c9;
        background: #ffffff;
    }

select.form-select {
    color: grey;
}

.panel-body {
    padding: 12px 24px 10px 35px;
    background-color: white;
    height: auto;
    border-radius: 10px;
}
.edit-icon {
    color: #d44ac2;
    cursor: pointer;
}

    .edit-icon:hover {
        color: #a8329b; /* darker shade */
    }
.delete-icon {
    color: #d44ac2;
    cursor: pointer;
}

    .delete-icon:hover {
        color: #a8329b; /* darker shade */
    }