@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    background-color: #f8f9fa;
    color: #333;
    overflow: hidden;
}

.layoutContainer {
    display: flex;
}

.sideContentContainer {
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100vh;
}

.sideContentContainer::-webkit-scrollbar {
    width: 0;
}

.sideMainContent {
    padding: 20px 20px 40px 20px;
}

.sideLogo {
    padding: 15px 20px 15px 20px;
}

.sideLogo h6 {
    text-decoration: none;
    font-size: 38px;
    text-align: center;
    font-weight: 500;
    font-family: 'Montserrat';
    color: #ffffff;
}

/* Navbar Styles */
.navbarMain {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

.listIcon {
    color: #707070;
    font-size: 35px;
    /* position: absolute;
    left : 10px; */
    z-index: 10;
    display: none;
    cursor: pointer;
}

/* profile menu */
.profileSec {
    position: relative;
    width: 100%
}

.profile {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: end;
}

.profile h3 {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat';
    margin-bottom: 0;
    color: #77C042;
}

.img-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0; /* Optional background for better icon visibility */
  }

  .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 50%;
    max-width: 600px;
    text-align: left;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-btn:hover {
    color: #000;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
    pointer-events: auto;
}

.modal:not(.show) {
    pointer-events: none;
}

.modal-backdrop {
    display: none !important;
    opacity: 0;
}
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.tab-btn {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 10px 20px;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 5px;
}

.tab-btn:hover {
    background-color: #ddd;
}

.tab-btn.active {
    background-color: #ccc;
    font-weight: bold;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

#imagesContainer img {
    max-height: 150px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.chatPlaceholder {
    background-color: #f8f9fa;
    border: 1px dashed #dee2e6;
    border-radius: 10px;
}
#messageVisibility {
    width: 45px; /* Fixed dropdown width */
    min-width: 80px; /* Minimum width to prevent squishing */
    margin-left: 5px; /* Spacing between the input and dropdown */
}

#chatMessageInput {
    flex: 1; /* Take up the remaining space */
}

#ticket_number {
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #f9f9f9;
    border: 2px solid #ccc;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#ticket_number::placeholder {
    font-weight: bold;
    font-size: 1.1rem;
    color: #999;
}

#ticket_number:hover {
    border-color: #007bff;
    background-color: #eef6ff;
}

#ticket_number:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

label[for="ticket_number"] {
    font-weight: bold;
    color: #333;
    font-size: 1.2rem;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 800px;
    position: relative;
}






.modal-content button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #0056b3;
}

.modal-content button:nth-child(1) {
    background-color: #6c757d;
}

.modal-content button:nth-child(1):hover {
    background-color: #5a6268;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.modal-backdrop {
    z-index: 1040 !important;
    opacity: 0.5; /* Ensure it's slightly transparent */
}
/* General button styles */
.modal-content .btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

/* Default "Annuleren" button style */
.modal-content .btn.btn-secondary {
    background-color: #ff4d4f; /* Red for cancel button */
    color: white;
}

/* Hover effect for "Annuleren" button */
.modal-content .btn.btn-secondary:hover {
    background-color: #d93639; /* Darker red */
}




/* menu (the right one) */

.menu {
    position: absolute;
    top: calc(100% + 24px);
    right: 0;
    width: 150px;
    min-height: 48px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: 300ms;
    z-index: 9;
}

.menu::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 14px;
    width: 20px;
    height: 20px;
    background: #fff;
    transform: rotate(45deg);
    z-index: -1;
}

.menu.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* menu links */

.menu ul {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 10;
    background: #fff;
    padding-left: 0;
    margin: 0;
}

.menu ul li {
    list-style: none;
}

.menu ul li:hover {
    background: #eee;
}

.menu ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    font-family: 'Montserrat';
    display: flex;
    align-items: center;
    padding: 12px 20px;
}

#imageUploadSection {
    display: flex;
    align-items: center;
    gap: 15px;
}

#imageUploadSection .col {
    flex-grow: 1;
}

#imageUploadSection .btn {
    margin-top: 8px;
}


.notificationMenu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 350px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    padding: 0;
}

.notificationMenu.active {
    display: block;
}

.notificationItem {
    display: flex;
    align-items: flex-start;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.notificationItem:hover {
    background-color: #f9f9f9;
}

.notification-icon {
    font-size: 20px;
    margin-right: 12px;
    color: #5bc0de;
}

.notification-content {
    flex: 1;
}

.notification-content .message {
    font-size: 14px;
    color: #333;
    margin: 0 0 4px;
}

.notification-content .timestamp {
    font-size: 12px;
    color: #999;
}

.seeMoreButton {
    text-align: center;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
}

.see-more-btn {
    background: none;
    color: #007bff;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.uploadFileDiv {
    position: relative;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff4d4f;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
}

.close-btn:hover {
    background: #e84141;
}

#profile_preview {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: none;
}

.bi-sort-up,
.bi-sort-down {
    margin-left: 5px;
    font-size: 12px;
    cursor: pointer;
}

.bi-sort {
    margin-left: 5px;
    font-size: 12px;
    color: #ccc;
    cursor: pointer;
}


.see-more-btn:hover {
    text-decoration: underline;
}

.no-notifications {
    text-align: center;
    padding: 16px;
    color: #999;
}

.no-notifications-content {
    font-size: 14px;
    color: #666;
    padding: 20px 0;
}

.badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 5px 8px;
    font-size: 0.9em;
    display: none;
    z-index: 10;
}



.viewAll {
    display: flex;
    text-align: center;
    padding: 10px 0 !important;
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.viewAll:hover {
    text-decoration: underline;
    color: #77C042;
}

.searchSec {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.profileMain{
    display: flex;
    align-items: center;
    gap: 15px;
}
.profileMain .bi-bell-fill{
    font-size: 22px;
    color: #77C042;
}
.searchSec input {
    padding: 10px 20px 10px 35px;
    width: 100%;
    max-width: 400px;
    font-size: 16px;
    font-weight: 400;
    color: #707070 !important;
    font-family: 'Montserrat';
    box-shadow: none !important;

}

.searchSec:Focus {
    border-color: #77C042 !important;
}

.searchSec input::Placeholder {
    color: #707070 !important;
}

.searchIcon {
    position: absolute;
    left: 10px;
    cursor: pointer;
    color: #707070 !important;
}

/* Sidebar Styles */
.sidebar {
    background-color: #77C042 !important;
    height: 100vh;
    padding-top: 20px;
    color: white;
    width: 100%;
    max-width: 300px;
    overflow-y: scroll;
    border-radius: 0px 40px 0 0;
}

.status-icon {
    display: inline-flex; /* Use inline-flex for inline alignment */
    align-items: center;  /* Vertically center the icon and text */
    font-size: 16px;
    color: #333;
    gap: 5px; /* Add spacing between the icon and text */
    margin-top: 10px; /* Optional: Adjust as needed */
}

.status-icon i {
    font-size: 18px; /* Adjust the icon size to fit with the text */
}



.sidebar::-webkit-scrollbar {
    width: 0;
}

.sidebar .nav-link {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Montserrat';
    color: #fff;
    padding: 12px 20px;
    transition: background-color 0.3s, color 0.3s;
    border-radius: unset;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 4px;
}

.sidebar .nav-link i {
    font-size: 28px;
}

.sidebar .nav-link:hover {
    background-color: #FFF;
    color: #77C042 !important;
}

.sidebar .nav-link.navLinkActive {
    background-color: #FFF;
    color: #77C042 !important;
}






/* Additional CSS for login page */
body.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
}

.login-container {
    max-width: 500px;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-container .logo {
    text-align: center;
    margin-bottom: 20px;
}

.login-container .form-control {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #000000 !important;
    padding: 10px 15px;
    box-shadow: none !important;
    border: 1px solid #ddd;
}

.login-container .input-group-text {
    border-radius: 25px 0 0 25px;
    border-right: 0;
}

.login-container .btn-login {
    width: 100%;
    border-radius: 25px;
    background-color: #7fc242;
    border: none;
    padding: 10px;
    color: #fff;
    font-size: 16px;
    padding: 8px 20px;
}
.login-container a{
    color: #77C042;
    text-decoration: none;
}
.login-container a:hover{
    text-decoration: underline;
}
.login-container .btn-login:hover {
    background-color: #6db838;
}

.login-container .forgot-password {
    text-align: center;
    margin-top: 10px;
}

.login-container .social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.login-container .social-icons a {
    margin: 0 10px;
    color: #7fc242;
    font-size: 24px;
}

.polatSec h2 {
    font-family: 'Montserrat';
    font-size: 35.78px;
    font-weight: 600;
    margin-bottom: 0;
    color: #000000;
}

.polatSec p {
    margin-bottom: 0;
    font-family: 'Montserrat';
    font-size: 18.78px;
    font-weight: 400;
    letter-spacing: 0.053em;
    margin-bottom: 0;
    color: #000000;
    margin-top: 5px;
}

.montarBtn {
    border-radius: 12px;
    font-family: 'Poppins';
    font-size: 18.78px;
    font-weight: 400;
    letter-spacing: 0.053em;
    margin-bottom: 0;
    color: #fff;
    background-color: #77C042;
    padding: 12px 15px;
    border: none;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    /* Adding transition for smooth effects */
}

.montarBtn:hover {
    background-color: #6CAE38;
    /* New background color on hover */
    transform: scale(1.02);
    /* Slightly enlarges the button */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    /* Adds a shadow effect */
}

.list-group-item {
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.assignmentCard {
    border: 1px solid #ddd;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 15px;
    padding: 13px 14px;
    margin-bottom: 10px;
}

.assignmentCard:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.utrechtContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 100%;
}

.utrechtContent h5 {
    margin-bottom: 0;
    font-family: 'Montserrat';
    font-size: 14.78px;
    font-weight: 500;
    letter-spacing: 0.053em;
    margin-bottom: 0;
    color: #707070;
}

.sluitwerk {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.timeDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sluitwerk h6 {
    margin-bottom: 0;
    font-family: 'Montserrat';
    font-size: 14.78px;
    font-weight: 600;
    letter-spacing: 0.053em;
    margin-bottom: 0;
    color: #000000;
}

.timeDiv h3 {
    margin-bottom: 0;
    font-family: 'Montserrat';
    font-size: 14.78px;
    font-weight: 500;
    letter-spacing: 0.053em;
    margin-bottom: 0;
    color: #000000;
    font-style: italic;
}

.bekijkBtn {
    border-radius: 25px;
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.053em;
    margin-bottom: 0;
    color: #fff;
    background-color: #77C042;
    padding: 9px 30px;
    border: none;
    width: 100%;
    max-width: 200px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 15px;

}

.bekijkBtn:hover {
    background-color: #6CAE38;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.assignmentCardTitle {
    margin-bottom: 0;
    font-family: 'Poppins';
    font-size: 30.78px;
    font-weight: 500;
    letter-spacing: unset;
    margin-bottom: 1rem;
    color: #000000;
}

.greenColor {
    color: #77C042 !important;
}

.redColor {
    color: red !important;
}

.createFormSection {
    margin-top: 3rem;
}

.formInput {
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #000000 !important;
    padding: 14px 20px;
    box-shadow: none !important;
    border: 1px solid #ddd;
    border-radius: 30px !important;
    resize: none;
}

.formInput::placeholder {
    color: #000000 !important;
}
.select2-container .select2-selection--single {
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #000000 !important;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    box-shadow: none;
    height: auto;
}


.select2-container .select2-selection__placeholder {
    color: #000000 !important;
}

/* Style the dropdown arrow */
.select2-container .select2-selection__arrow {
    height: 100%;
}

.select2-container .select2-dropdown {
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* Highlighted option in dropdown */
.select2-container .select2-results__option--highlighted {
    background-color: #f0f0f0;
    color: #000;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 50px !important;
    position: absolute;
    top: 2px !important;
    right: 10px !important;
    width: 20px;
}

.subMitBtn {
    border-radius: 25px;
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.053em;
    margin-bottom: 0;
    color: #fff;
    background-color: #77C042;
    padding: 9px 30px;
    border: none;
    width: 100%;
    max-width: 300px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 15px;
}

.subMitBtn:hover {
    background-color: #6CAE38;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.file-wrapper {
    width: 200px;
    height: 200px;
    border: 1px solid #ddd;
    position: relative;
    margin: auto;
    margin-top: 10px;
}

.file-wrapper:after {
    content: '+';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: max-content;
    height: max-content;
    display: block;
    max-height: 85px;
    font-size: 70px;
    font-weight: bolder;
    color: #707070;
}

.file-wrapper:before {
    content: 'Profielfoto uploaden';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 35px;
    width: max-content;
    height: max-content;
    font-size: 0.75em;
    color: #000000;
    font-weight: 500;
}

.file-wrapper:hover:after {
    font-size: 73px;
}

.file-wrapper .close-btn {
    display: none;
}

.file-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 99999;
    cursor: pointer;
}

.file-set {
    background-size: cover;
    background-repeat: no-repeat;
    color: transparent;
    padding: 10px;
    border-width: 0px;
}

.file-set:hover {
    transition: all 0.5s ease-out;
    filter: brightness(110%);
}

.file-set:before {
    color: transparent;
}

.file-set:after {
    color: transparent;
}

.file-set .close-btn {
    position: absolute;
    width: 35px;
    height: 35px;
    display: block;
    background: #000;
    color: #fff;
    top: 0;
    right: 0;
    font-size: 25px;
    text-align: center;
    line-height: 1.5;
    cursor: pointer;
    opacity: 0.8;
}

.file-set>input {
    pointer-events: none;
}

.uploadBtn {
    border-radius: 25px;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.053em;
    margin-bottom: 0;
    color: #fff;
    background-color: #77C042;
    padding: 8px 25px;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 15px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

.uploadBtn:hover {
    background-color: #6CAE38;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.uploadFileDiv{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.polatSec2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}
.polatSec2 .searchSec{
    max-width: 400px;
}
.tableSection{
    margin-top: 2rem;
}
.tableSection .table{
    margin-bottom: 5px;
}
.theadTr th{
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
    background-color: #77C042;
    padding: 14px 15px;
    border: none;
}
.modal-actions {
    margin-top: 1.5rem;
}
.modal-actions .btn {
    min-width: 100px;
}

#noDataMessage {
    display: none;
    text-align: center;
    font-weight: bold;
    color: #888;
    margin-top: 20px;
}

.tbodyTr {
    transition: background-color 0.2s ease-in-out;
}

.tbodyTr:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}


.theadTh1{
    border-radius: 35px 0px 0 35px;
}
.theadThLast{
    border-radius: 0 35px 35px 0;
}
.tbodyTr td{

    background: none;
    padding: 18px 15px;
    border-bottom: 1px solid #ddd;
}
.tbodyTr td p{
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0;
    margin-top: 5px;
}
.iconsGroup{
    font-size: 20px;
    display: flex;
    gap: 10px;
}
.iconsGroup i{
    font-size: 20px;
    cursor: pointer;
}
.iconsGroup .bi-eye{
    color: #77C042;
}
.iconsGroup .bi-file-earmark-text{
    color: #707070;
}
.iconsGroup .bi-trash{
    color: red;
}
.accountMain{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.formCheck{
    display: flex;
    gap: 10px;
    align-items: center;
}
.formCheck input{
    width: 25px;
    height: 25px;
    box-shadow: none !important;
    border: 1px solid #ddd !important;
}
.formCheck input:checked{
    background-color: #77C042 !important;
    border-color: #77C042 !important;
}
.formCheck label{
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin-top: 3px;
}
.slideImage{
    width: 100%;
}
.swiper-pagination-bullet{
    border: 1px solid #7fc242 !important;
}
.swiper-pagination-bullet-active{
    background-color: #77C042 !important;
}
.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px)) !important;
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px)) !important;
}



/* Sidebar styling */
.navTabsSide {
    width: 360px;
    background-color: #ffffff;
    border-right: 1px solid #e5e5e5;
    padding: 15px;
    overflow-y: auto;
    height: calc(100vh - 214px);
    flex-wrap: unset !important;
    border-radius: 5px 0 0px 5px;
}
.navTabsSide::-webkit-scrollbar
{
	width: 0px;
}
.navTabsSide .nav-link {
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 15px;
    color: #495057;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navTabsSide .nav-link:hover {
    background-color: #77C042;
    color: #ffffff;
}

.navTabsSide .nav-link.active {
    background-color: #77C042;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.navTabsSide .nav-link.active .personSection h6 {
    color: #FFF !important;
}
.navTabsSide .nav-link.active .personSection p {
    color: #FFF !important;
}
.navTabsSide .nav-link:hover .personSection h6 {
    color: #FFF !important;
}
.navTabsSide .nav-link:hover .personSection p {
    color: #FFF !important;
}
/* Person section styling */
.personSection h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-align: start;
    font-family: 'Poppins';
}

.personSection p {
    font-family: 'Poppins';
    margin: 0;
    font-size: 12px;
    color: #aaaaaa;
    text-align: start;
}

/* Chat content styling */
.sideMainContent {
    flex-grow: 1;
    background-color: #f8f9fa;
    padding: 30px;
    overflow-y: auto;
}

.polatSec h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 25px;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 10px;
    font-family: 'Poppins';
}

/* Chat body styling */
.chatBody {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 15px 15px 10px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
}
.chatBodyContent::-webkit-scrollbar
{
	width: 0px;
}
.chatBodyContent {
    overflow-y: auto;
    height: calc(100vh - 346px);
}
.chatBody::before {
    content: "Begin van gesprek";
    display: block;
    text-align: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #cccccc;
    font-family: 'Poppins';

}

/* Chat messages styling */
.chatMessageContainer {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.chatMessageContainer.sent {
    justify-content: flex-end;
}

.chatMessageContainer.received {
    justify-content: flex-start;
}

.sent.green-shadow {
    box-shadow: 0px 0px 10px rgba(0, 255, 0, 0.5);
    background-color: #e6ffe6;
}

.received.grey-shadow {
    box-shadow: 0px 0px 10px rgba(128, 128, 128, 0.5);
    background-color: #f0f0f0;
}

.received.blue-shadow {
    box-shadow: 0px 0px 10px rgba(0, 0, 255, 0.5);
    background-color: #e6f2ff; /* Light blue background for service_desk users */
}

.chatMessageLogo {
    margin-right: 10px;
}

.chatMessageContainer {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chatMessageContainer.received {
    align-items: flex-start;
}

.chatMessage {
    padding: 10px 15px;
    border-radius: 10px;
    max-width: 70%;
    word-wrap: break-word;
}

.chatMessage.sent {
    background-color: #e0ffe0;
    box-shadow: 0px 4px 8px rgba(0, 255, 0, 0.5);
}

.chatMessage.received {
    background-color: #f0f0f0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.chatMessageInfo {
    margin-top: 5px;
    font-size: 0.8em;
    color: #666;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.chatMessageContainer.received .chatMessageInfo {
    justify-content: flex-start;
}


.chatMessageContainer.sent .chatMessageLogo {
    order: 2;
    margin-right: 0;
    margin-left: 10px;
}

.userLogo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.chatMessage {
    border-radius: 10px;
    padding: 10px;
    max-width: 70%;
    word-wrap: break-word;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.chatMessage.sent {
    font-family: 'Inter';
    background-color: #e9ecef;
}

.chatMessage.received {
    font-family: 'Poppins';
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
}


/* Additional tab content styling */
.tab-content {
    width: 100%;
    padding-left: 25px;
}

.tab-pane.fade {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tab-pane.fade.show.active {
    opacity: 1;
}
.userNavLogo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.personSection h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    font-family: 'Poppins';
}

.personSection p {
    margin: 0;
    font-size: 12px;
    color: #aaaaaa;
    font-family: 'Inter';
}

.chatInput{
    border-radius: 30px 0 0px 30px !important;
    font-size: 16px;
    padding: 12px 10px 12px 20px !important;
}

#agendaModal .modal-body {
    min-height: 500px;
}

#agendaCalendar {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 700px;
    overflow-y: auto;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fc-event {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border: 1px solid #007bff;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    white-space: normal;
}

.fc-daygrid-day {
    vertical-align: top;
    padding: 5px;
    background-color: #ffffff;
    border: 1px solid #ddd;
}

.fc-daygrid-day-events {
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow-y: auto;
    max-height: 200px;
}

.fc-toolbar {
    background-color: #f5f5f5;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.fc-toolbar-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.fc-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.fc-button:hover {
    background-color: #0056b3;
}

.fc-button.fc-button-active {
    background-color: #0056b3;
    color: #fff;
}

.fc-popover {
    z-index: 1050;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sendBtn{
    background-color: #7fc242 !important;
    border-color: #77C042 !important;
    width: 90px !important;
    font-family: 'Inter';
    font-size: 18px;
}


.calendar-container {
    padding: 20px 0;
    border-radius: 10px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background-color: #77C042;
    border-radius: 50px;
    padding: 5px 18px;
}

#calendar {
    width: 100%;
    height: calc(100vh - 150px);
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.filterTabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }

.tab-btn {
padding: 8px 16px;
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    width: 150px;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: #f0f0f0;
    color: #000;
}

.tab-btn.active {
    background-color: #77C042;
    color: white;
    border-color: #77C042;
}

.image-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;
    overflow: hidden;
}

.image-slider {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
}

.slider-image {
    flex: 0 0 100%;
    max-width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    font-size: 36px;
    color: #444;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    border-radius: 6px;
}
.slider-arrow:hover {
    background: rgba(255, 255, 255, 1);
}
.slider-arrow.left {
    left: 10px;
}
.slider-arrow.right {
    right: 10px;
}


.fc {
    font-size: 0.9em;
}

.fc-header-toolbar {
    padding: 5px 0;
}

.fc-daygrid-day-number {
    font-size: 0.8em;
}
.custom-week-event,
.custom-day-event {
    color: #0056b3;
    font-size: 12px;
    white-space: normal;
}



.nav-btn {
    background-color: #c5e6a4;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}
.nav-btn:hover{
    background-color: #f7f7f7;
}

.nav-btn i{
    color: #6CAE38;
    font-size: 25px;
}
.month-year {
    display: flex;
    align-items: center;
    gap: 30px;
}

.month {
    background-color: #c5e6a4;
    font-family: 'Inter';
    font-size: 24px;
    font-weight: 600;
    padding: 3px 25px;
    border-radius: 50px;
    color: #6CAE38;
}

.year {
    font-size: 20px;
    background-color: #c5e6a4;
    padding: 3px 20px;
    border-radius: 50px;
    color: #6CAE38;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.calendar-day {
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.day-title {
    font-family: 'Inter';
    font-size: 20px;
    margin-bottom: 10px;
}

.day-number {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Inter';
}

.task-count {
    font-family: 'Inter';
    font-size: 14px;
    margin-bottom: 15px;
    text-align: start;
}

.view-btn {
    background-color: #8ed760;
    border: none;
    padding: 8px 20px;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Inter';
    margin-top: 1rem;
}

.view-btn:hover {
    background-color: #77bf49;
}




@media (max-width : 1800px) {
    .utrechtContent h5 {
        font-size: 12px;
        letter-spacing: unset;
    }

    .sluitwerk h6 {
        font-size: 12px;
        letter-spacing: unset;
    }

    .timeDiv h3 {
        font-size: 12px;
        letter-spacing: unset;
    }

    .montarBtn {
        font-size: 16.78px;
        padding: 10px 15px;
    }

    .bekijkBtn {
        font-size: 16px;
        padding: 8px 27px;
        max-width: 200px;
    }
}

@media (max-width : 1400px) {
    .calendar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .formInput {
        font-size: 16px;
    }
    .assignmentCardTitle {
        font-size: 28.78px;
    }

    .montarBtn {
        font-size: 16.78px;
    }

    .polatSec h2 {
        font-size: 30.78px;
        letter-spacing: unset;
    }

    .polatSec p {
        font-size: 16.78px;
    }

    .sidebar {
        max-width: 270px;
    }

    .sidebar .nav-link {
        padding: 10px 15px;
        gap: 0px;
    }

    .sideLogo {
        padding: 15px 15px 15px 15px;
    }
}

@media (max-width : 1200px) {
    .montarBtn {
        font-size: 14px;
        letter-spacing: unset;
    }

    .listIcon {
        display: block;
    }

    .sidebar {
        position: fixed;
        z-index: 990;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 980;
    }

    .overlay.show {
        display: block;
    }
}

@media (max-width : 992px) {
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .iconsGroup i {
        font-size: 19px;
    }
    .tbodyTr td p {
        font-size: 14px;
    }
    .theadTr th{
        min-width: 250px;
    }
    .tableSection{
        overflow-x: scroll;
        width: 100%;
        max-width: 1000px;
    }
    .tableSection::-webkit-scrollbar {
        height: 8px;
    }

    .tableSection::-webkit-scrollbar-track {
        background-color: #eceef2;
    }

    .tableSection::-webkit-scrollbar-thumb {
        background-color: #fff;
        background-image: -webkit-linear-gradient(top,
                #77C042 100%, #77C042 100%);
    }
    .createFormSection {
        margin-top: 2rem;
    }
    .utrechtContent2 {
        margin-top: .7rem;
    }

    .sideMainContent {
        padding: 10px 20px 30px 20px;
    }
}

@media (max-width : 768px) {
    .file-wrapper{
        margin-top: 0;
    }
    .sluitwerk {
        justify-content: start;
        margin-top: .5rem;
    }

    .timeDiv {
        justify-content: end;
        margin-top: .5rem;
    }

    .listIcon {
        font-size: 34px;
    }

    .profile h3 {
        font-size: 16px;
    }

    .navbarMain {
        padding: 12px 15px;
        gap: 15px;
    }

    .profile .img-box {
        width: 45px;
        height: 45px;
    }
}

@media (max-width : 576px) {
    .calendar-header {
        margin-bottom: 15px;
        padding: 5px 5px;
    }
    .calendar-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .calendar-header {
        /* flex-direction: column; */
        align-items: center;
        gap: 10px;
    }
    .month-year{
        gap: 10px;
    }
    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .month, .year {
        font-size: 18px;
        padding: 3px 15px;
    }

    .day-title {
        font-size: 18px;
    }

    .day-number {
        font-size: 20px;
    }

    .task-count {
        font-size: 12px;
    }

    .view-btn {
        font-size: 14px;
        padding: 6px 15px;
    }
    .profileMain {
        gap: 10px;
    }
    .formCheck input{
        width: 20px;
        height: 20px;
    }
    .formCheck label{
        font-size: 16px;
        margin-top: 3px;
    }
    .polatSec2 {
        align-items: start;
        gap: 18px;
        flex-direction: column;
    }
    .theadTr th {
        padding: 12px 15px;
    }
    .uploadBtn {
        font-size: 15px;
        letter-spacing: unset;
        padding: 8px 20px;
    }
    .subMitBtn {
        font-size: 16px;
        padding: 9px 24px;
        max-width: 250px;
    }
    .assignmentCardTitle {
        font-size: 25.78px;
    }

    .polatSec h2 {
        font-size: 24.78px;
    }

    .montarBtn {
        font-size: 12px;
    }

    .polatSec p {
        font-size: 14px;
        letter-spacing: unset;
    }

    .profileSec {
        width: unset;
    }

    .profile {
        gap: 6px;
    }

    .sidebar .nav-link i {
        font-size: 25px;
    }

    .sidebar .nav-link {
        padding: 10px 15px;
        gap: 5px;
    }

    .sideLogo {
        padding: 15px 15px 10px 15px;
    }

    .sideLogo h6 {
        font-size: 35px;
    }

    .searchSec input {
        padding: 8px 10px 10px 31px;
        font-size: 14px;
    }

    .listIcon {
        font-size: 32px;
    }

    .profile h3 {
        font-size: 14px;
    }

    .navbarMain {
        padding: 12px 15px;
        gap: 10px;
    }

    .profile .img-box {
        width: 43px;
        height: 43px;
    }

    .sideMainContent {
        padding: 10px 15px 20px 15px;
    }
}
