/* /Chats/Chat.razor.rz.scp.css */
.chatContainer[b-33edw4ztbt] {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #FDF9F3;
    font-family: "Poppins", sans-serif;
    min-height: 100%;
}

.chatHeader[b-33edw4ztbt] {
    display: flex;
    gap: 20px;
    flex-direction: row;
    padding: 6px 20px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px 0 rgba(76, 140, 74, 0.12);
    height: 70px;
}

.username-container[b-33edw4ztbt] {
    display: flex;
    flex-grow: 1;
    height: 90%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.friendName[b-33edw4ztbt] {
    font-weight: 600;
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: "Poppins", sans-serif;
    color: #264027
}

.messagesContainer[b-33edw4ztbt] {
    display: flex;
    flex-direction: column-reverse;
    overflow-y: auto;
    flex-grow: 1;
    padding-bottom: 135px;
    -webkit-overflow-scrolling: touch;
}
.sent.chatbot-message[b-33edw4ztbt] {
    padding-right: 40px;
    margin-left: 20%;
}
.received.chatbot-message[b-33edw4ztbt] {
    padding-left: 40px;
    margin-right: 20%;
}
.sent .msg.chatbot[b-33edw4ztbt] {
    color: #E2E8E2 !important;
    background: #666 !important;
    font-size: 14px;
}
.received .msg.chatbot[b-33edw4ztbt] {
    color: #000 !important;
    background: #E2E8E2 !important;
    font-size: 14px;
}
.chatbot-separator[b-33edw4ztbt] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px 32px;
    gap: 8px;
}
.chatbot-separator .separator-text[b-33edw4ztbt] {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #666;
    text-align: center;
}
.chatbot-separator .separator-line[b-33edw4ztbt] {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 0 10px;
    border: none;
}


.chatInput[b-33edw4ztbt] {
    background: linear-gradient(
            to top,
            rgb(38, 64, 39, 0.25) 0%,
            rgba(38, 64, 39, 0.20) 40%,
            rgba(38, 64, 39, 0.15) 60%,
            rgba(38, 64, 39, 0) 100%
    );
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px 30px 10px;
    z-index: 2;
    gap: 5px;
}

.chatInput.withSuggestions[b-33edw4ztbt] {
    background: none;
    padding-bottom: 0;
}

.chatControls[b-33edw4ztbt] {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.chatSuggestions[b-33edw4ztbt] {
    display: flex;
    flex-direction: row;
    gap: 5px;
    overflow-x: scroll;
    white-space: nowrap;
    width: 100%;
    scrollbar-width: none;
}

.suggestion[b-33edw4ztbt] {
    margin: 0;
    flex-shrink: 0;
    background: #4C8C4A;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    height: 40px;
    padding-right: 10px;
    padding-left: 10px;
    color: white;
}

.textInput[b-33edw4ztbt] {
    width: 100%;
    height: 38px;
    font-size: 18px;
    padding-left: 10px;
}

.textInput:focus[b-33edw4ztbt],
.userInput:focus[b-33edw4ztbt] {
    outline: none;
    border: 2px solid #264027;
}

.textInput[b-33edw4ztbt], .userInput[b-33edw4ztbt] {
    border: 1px solid #264027;
    border-radius: 12px;
    background-color: #f3f3f3
}

.sendButton[b-33edw4ztbt] {
    padding: 0;
    width: 45px;
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #4C8C4A;
    display: flex;
    justify-content: center;
    align-items: center;
}

.received[b-33edw4ztbt], .sent[b-33edw4ztbt] {
    font-size: 1.2em;
    padding: 5px 10px;
    color: #fff;
    display: flex;
    gap: 2px;
    align-items: end;
}

.sent[b-33edw4ztbt] {
    margin-left: 25%;
    text-align: right;
    justify-content: end;
    flex-direction: row;
}
.received[b-33edw4ztbt] {
    margin-right: 25%;
    text-align: left;
    justify-content: start;
    flex-direction: row-reverse;
}

.sent .msg[b-33edw4ztbt],
.received .msg[b-33edw4ztbt] {
    padding: 12px;
    border-radius: 16px;
    max-width: 90%;
    width: fit-content;
    word-wrap: anywhere;
    text-align: start;
    display: flex;
}

.sent .msg[b-33edw4ztbt] {
    background: #3A6C38;
    border-bottom-right-radius: 3px;
}

.received .msg[b-33edw4ztbt] {
    color: black;
    background: rgba(58, 108, 56, 0.5);
    border-bottom-left-radius: 3px;
}

.sent .user[b-33edw4ztbt],
.received .user[b-33edw4ztbt] {
    color: #4F5D4C;
    font-size: 16px;
}

.audio[b-33edw4ztbt] {
    border-radius: 10px;
    width: 100%;
}

.audioMessage[b-33edw4ztbt] {
    width: 100%;
    height: 45px;
    padding-left: 10px;
    background: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 10px;
}

.removeAudioMessage[b-33edw4ztbt] {
    width: 35px;
    height: 35px;
    background: #D64545;
    border-radius: 50%;
    border: none;
}

.play-btn[b-33edw4ztbt], .pause-btn[b-33edw4ztbt] {
    border: none;
    background-color: transparent !important;
    display: flex;
    align-content: center;
}

.spinner-container[b-33edw4ztbt] {
    position: fixed;
    left: calc(50% - 25px);
    top: 75px;
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.spinner[b-33edw4ztbt] {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 8px solid rgba(38, 64, 39, 1);
    border-radius: 50%;
    border-top-color: #F2C94C;
    animation: spin-b-33edw4ztbt 1s linear infinite;
}

@keyframes spin-b-33edw4ztbt {
    to { transform: rotate(360deg); }
}

.message-menu[b-33edw4ztbt] {
    height: 23px;
    width: 23px;
    background-color: #393939;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-menu-container[b-33edw4ztbt] {
    display: flex;
    align-items: end;
}

.msg.deleted[b-33edw4ztbt] {
    background-color: #4F5D4C;
    font-size: 14px;
    color: white;
    padding: 8px;
}


.popup-overlay[b-33edw4ztbt] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup[b-33edw4ztbt] {
    background: white;
    padding: 20px;
    border-radius: 12px;
    
}

.popup-buttons[b-33edw4ztbt]{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    font-size: 1.2em;
}

.btn-emergency-message[b-33edw4ztbt]{
    border: 1px solid #264027;
    border-radius: 12px;
    padding: 12px;
}

.btn-emergency[b-33edw4ztbt]{
    border: 1px solid #b32121;
    background: #b32121;
    color: white;
    border-radius: 12px;
    padding: 12px;
}

.sent .msg.sending[b-33edw4ztbt] {
    background: gray;
}

.close-chat-btn[b-33edw4ztbt]{

    background: #C9190B;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    margin-left: auto;
    cursor: pointer;

}
/* /Chats/Messages.razor.rz.scp.css */
.chatContainer[b-n2qye0e9j8] {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 20px 0;
    background: #FDF9F3;
    font-family: "Poppins", sans-serif;
}

.chatTitle[b-n2qye0e9j8] {
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.messages-header[b-n2qye0e9j8] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 12px;
    align-items: center;
}

.add-chat[b-n2qye0e9j8] {
    border-radius: 50%;
    border: none;
}

.chatMessagesAmount[b-n2qye0e9j8] {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-left: 8px;
    font-family: "Poppins", sans-serif;
}

.friendCard[b-n2qye0e9j8] {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
    border-bottom: #E6E6E6 1px solid;
    position: relative;
    justify-content: space-between;
}

.friendInfo[b-n2qye0e9j8] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100px;
}

.friendName[b-n2qye0e9j8] {
    margin: 0;
    font-size: 16px;
    color: #000000;
    padding-bottom: 5px;
    padding-top: 15px;
    white-space: wrap;
    text-overflow: ellipsis;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.friendMessage[b-n2qye0e9j8] {
    margin: 0;
    font-size: 15px;
    color: #696969;
    display: -webkit-box; /* Everything following this is for text truncate */
    -webkit-box-orient: vertical;
    word-wrap: anywhere;
    overflow: hidden;
    -webkit-line-clamp: 3;
}

.friendCard .chat-link[b-n2qye0e9j8]  .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #D7D7D7;
}

.friendList[b-n2qye0e9j8] {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-bottom: 32px;
}

.onlineStatus[b-n2qye0e9j8] {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #D64545;
    z-index: 1;
    top: 20px;
    left: 58px;
    border: 1px solid #D7D7D7;
}

.is-online[b-n2qye0e9j8] {
    background: #4C8C4A;
}

.chatStatus[b-n2qye0e9j8] {
    height: 100px;
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 10px;
    gap: 8px;
}

.chatStatus > p[b-n2qye0e9j8] {
    margin: 0;
    padding-top: 19px;
    color: #696969;
    font-size: 14px;
    font-weight: 500;
}

.new-messages-indicator[b-n2qye0e9j8] {
    display: flex;
    background: #4C8C4A;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    align-items: center;
}

.new-messages-indicator p[b-n2qye0e9j8] {
    color: #fff;
    width: 35px;
    text-align: center;
    font-size: 20px;
}

.loading-bar[b-n2qye0e9j8] {
    position: fixed;
    width: 100%;
    left: 0;
    background: none; 
    height: 5px;
}

.loading-progress[b-n2qye0e9j8] {
    position: absolute;
    height: 100%;
    margin: 0;
    background: #4C8C4A;
    transition: width 0.1s;
}

/* ADD CONVO POP UP */
.popup-overlay[b-n2qye0e9j8] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: calc(10000*10000);
}

.popup[b-n2qye0e9j8] {
    background: #fff;
    padding: 16px 20px;
    border-radius: 16px;
    min-width: 330px;
    width: 85%;
    max-height: 500px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.popup-header[b-n2qye0e9j8] {
    display: flex;
    flex-direction: row;
    gap: 5px;
    padding-bottom: 10px;
    align-items: center;
}
.popup-header h2[b-n2qye0e9j8] {
    margin: 0;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    flex: 1;
}
.popup-header .btn-decline[b-n2qye0e9j8] {
    border: none;
    color: white;
    cursor: pointer;
}

.friendslist-header[b-n2qye0e9j8] {
    display: flex;
    flex-direction: column;
    padding-bottom: 8px;
}
.friendslist-header p[b-n2qye0e9j8] {
    font-size: 15px;
    font-weight: 500;
    color: #666;
    margin: 0 0 8px 0;
}
.friendslist-header .search-bar[b-n2qye0e9j8] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1px 8px 1px 1px;
    gap: 8px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    width: 100%;
    height: 34px;
}
.friendslist-header .search-bar .search-bar-input[b-n2qye0e9j8] {
    flex: 1;
    padding-left: 12px;
    font-size: 14px;
    border-radius: 8px 0 0 8px;
    outline: none;
    transition: all 0.2s ease;
    height: 100%;
}

.friendsList[b-n2qye0e9j8] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
    padding: 0 24px 0 0;
}
.friendsList p[b-n2qye0e9j8] {
    font-size: 13px;
    color: #666;
    margin: 0 0 12px 0;
    text-align: left;
    width: 100%;
}

.friendListCard[b-n2qye0e9j8] {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.friendListCard[b-n2qye0e9j8]  img { 
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.friendListCard p[b-n2qye0e9j8] {
    margin: 0;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

@media (min-width: 768px) {
    .chatContainer[b-n2qye0e9j8] {
        padding: 32px 32px 0 32px;
    }
}
/* /Components/AuthSwitcher.razor.rz.scp.css */
div[b-4ojuxwg0qy] {
    z-index: 9999;
    position: fixed;
    top: 10px;
    right: 10px;
}

.hidden[b-4ojuxwg0qy] {
    display: none;
}

select[b-4ojuxwg0qy] {
    padding: 5px;
    border-radius: 5px;
    outline: none;
}
/* /Components/CaregiverButtons.razor.rz.scp.css */
.viewchat-act-btns[b-zeicio1bds]{
    display: flex;
    flex-direction: row;;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-weight: 600;
    font-size: 15px;

    text-decoration: none;
}

.end-friendschip-btn[b-zeicio1bds]{
    min-height: 50px;
    border-radius: 10px;
    min-width: 90px;
    padding: 8px;
    background-color:#b32121;
    color: #fff;
}

.restart-friendschip-btn[b-zeicio1bds]{
    min-height: 50px;
    border-radius: 10px;
    min-width: 90px;
    padding: 10px;
    background-color:#4C8C4A;
    color: #fff;
}

/*.popup-overlay {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0,0,0,0.4);*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    z-index: 2000;*/
/*}*/

/*!* Popup venster *!*/
/*.popup-box {*/
/*    background: #fff;*/
/*    padding: 24px 30px;*/
/*    border-radius: 12px;*/
/*    width: 380px;*/
/*    max-width: 90%;*/
/*    box-shadow: 0 6px 20px rgba(0,0,0,0.25);*/
/*    text-align: center;*/
/*    font-family: 'Poppins', sans-serif;*/
/*}*/

/*!* Titel/tekst *!*/
/*.popup-box p {*/
/*    margin-bottom: 20px;*/
/*    font-size: 1.05rem;*/
/*    color: #333;*/
/*}*/

/*!* Buttons container *!*/
/*.popup-buttons {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: 12px;*/
/*}*/

/*!* Buttons *!*/
/*.popup-buttons button {*/
/*    padding: 8px 16px;*/
/*    border-radius: 6px;*/
/*    border: none;*/
/*    font-size: 0.95rem;*/
/*    cursor: pointer;*/
/*    transition: all 0.15s ease;*/
/*    color: white;*/

/*}*/

/*!* Confirm button *!*/
/*.popup-confirm {*/
/*    background-color: #4C8C4A;*/
/*}*/

/*.popup-confirm:hover {*/
/*    background-color: #3A6C38;*/
/*}*/

/*!* Cancel button *!*/
/*.popup-cancel {*/
/*    background-color: #C9190B;*/
/*}*/

/*.popup-cancel:hover {*/
/*    background-color: #b32121;*/
/*}*/
/* /Components/EmergencyButton.razor.rz.scp.css */
.emergencyButton[b-j7r9ds0jsd] {
    width: 55px;
    height: 55px;
    background-color: #D64545;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 0 2.5px #D64545;
}

.sos-text[b-j7r9ds0jsd] {
    background-color: transparent;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
}
/* /Components/Inputs/ImageUpload.razor.rz.scp.css */
figure[b-gum8vqig5u] {
    position: relative;
}

[b-gum8vqig5u] .image-container img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    display: block;
}

[b-gum8vqig5u] .overlay {
    position: absolute;
    bottom: 8px;
    left: 8px;
}
/* /Components/OfflineIndicator.razor.rz.scp.css */
.offline-banner[b-0uys5xx0ar] {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #D64545;
    color: white;
    text-align: center;
    padding: 0 8px;
    font-weight: bold;
    z-index: 9999;
    height: 25px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.offline-banner.visible[b-0uys5xx0ar] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.offline-banner.hidden[b-0uys5xx0ar] {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}
/* /DashboardCaregiver/DashboardCaregiver.razor.rz.scp.css */
*[b-bdga3wzv84] {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.loading-text[b-bdga3wzv84],
.no-residents-text[b-bdga3wzv84],
.no-emergencies-text[b-bdga3wzv84]{
    font-size: 16px;
    margin: 8px 0;
    color: #666;
    font-family: "Poppins", sans-serif;
    text-align: left;
}

.caregiver-wrapper[b-bdga3wzv84] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-family: "Poppins", sans-serif;
    gap: 12px;
    padding-bottom: 24px;
}

.resident-container[b-bdga3wzv84] {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.resident-container .resident-header[b-bdga3wzv84] {
    position: sticky;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    top: 0;
    background: #FDF9F3;
}
.resident-container .resident-header h2[b-bdga3wzv84]{
    font-size: 18px;
    font-weight: 600;
    color: #264027;
}
.resident-header h2 span[b-bdga3wzv84] {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-left: 8px;
    font-family: "Poppins", sans-serif;
}

.resident-container .resident-list[b-bdga3wzv84] {
    overflow-x: scroll;
    display: grid;
    grid-auto-flow: column;
    padding: 0 16px 12px 16px;
    gap: 20px;
    grid-auto-columns: 140px;
}
.resident-list .resident-card[b-bdga3wzv84] {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
}
.resident-list .resident-card[b-bdga3wzv84]  a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.resident-list .resident-card[b-bdga3wzv84]  a img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 1;
    object-fit: cover;
}
.resident-card[b-bdga3wzv84]  a .name {
    margin-top: 8px;
    font-weight: 600;
    font-size: 16px;
    color: #1e1e1e;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.resident-card[b-bdga3wzv84]  a .age {
    font-size: 15px;
    color: #666;
    margin-top: 2px;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

/* Noodknop */
.request-container[b-bdga3wzv84] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.request-container .request-header[b-bdga3wzv84] {
    position: sticky;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    top: 0;
    background: #FDF9F3;
}
.request-container .request-header h2[b-bdga3wzv84]{
    font-size: 18px;
    font-weight: 600;
    color: #264027;
}
.request-container .request-header h2 span[b-bdga3wzv84] {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-left: 8px;
    font-family: "Poppins", sans-serif;
}

.request-container .request-list[b-bdga3wzv84] {
    display: flex;
    flex-direction: column;
    padding: 0 16px 0 16px;
    gap: 12px;
}
.request-container .request-list.horizontal[b-bdga3wzv84] {
    display: grid;
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: 375px;
    padding-bottom: 12px;
}


.request-list .request-card[b-bdga3wzv84] {
    display: flex;
    padding: 1rem 1rem 1rem 0.7rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    position: relative;
    align-items: center;
    justify-content: space-between;
    font-family: "Poppins", sans-serif;
    box-shadow: inset 0 0 0 2px #264027;
}
.request-card.emergency[b-bdga3wzv84] {
    box-shadow: inset 0 0 0 2px #C9190B;
    border-left: 16px solid #C9190B;
}

.request-content[b-bdga3wzv84] {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    flex: 1;
    gap: 1rem;
}
.request-content .card-sidebar[b-bdga3wzv84] {
    display: flex;
    flex-direction: column;
    color: #264027;
    gap: 12px;
    align-self: stretch;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.card-sidebar .alert-icon[b-bdga3wzv84] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.request-card.emergency .request-content .card-sidebar .alert-icon[b-bdga3wzv84] {
    background: none;
}

.alert-details[b-bdga3wzv84] {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: #264027;
    gap: 6px;
}
.alert-details .alert-header[b-bdga3wzv84] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.alert-header p[b-bdga3wzv84] {
    font-size: 16px;
    font-weight: 600;
}

.alert-details .alert-body[b-bdga3wzv84] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.alert-body .alert-message[b-bdga3wzv84] {
    margin: 0 22px 0 0;
    font-size: 14px;
    font-weight: 500;
}

.alert-body .alert-buttons[b-bdga3wzv84] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
}
.alert-buttons[b-bdga3wzv84]  .watch-chat-button {
    width: 100%;
    background: none;
    box-shadow: inset 0 0 0 2px #C9190B;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-align: center;
    color: #C9190B;
}
.alert-buttons .start-chat-button[b-bdga3wzv84] {
    width: 100%;
    background-color: #C9190B;
    color: #fff;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.alert-buttons .approve-button[b-bdga3wzv84] {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    background-color: #4C8C4A;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-align: center;
    color: #fff;
}
.alert-buttons .decline-button[b-bdga3wzv84] {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    background-color: #C9190B;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-align: center;
    color: #fff;
}

.alert-body .alert-time[b-bdga3wzv84] {
    font-size: 13px;
    color: #264027;
    text-align: right;
    font-weight: 500;
}

@media (min-width: 768px) {
    .resident-container .loading-text[b-bdga3wzv84]{
        padding: 0 32px;
    }
    .resident-container .no-residents-text[b-bdga3wzv84] {
        padding: 0 32px;
    }
    .resident-list .resident-card[b-bdga3wzv84] {
        grid-auto-columns: 180px;
    }
    .request-container .request-list[b-bdga3wzv84] {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        padding-bottom: 12px;
    }
    .resident-container .resident-header[b-bdga3wzv84] {
        padding: 16px 32px 16px 32px;
    }
    .resident-container .resident-list[b-bdga3wzv84] {
        padding: 0 32px 12px 32px;
    }
    
    .request-container .request-header[b-bdga3wzv84] {
        padding: 16px 32px 16px 32px;
    }
    .request-container .request-list[b-bdga3wzv84] {
        padding: 0 32px 0 32px;
    }
}

@media (min-width: 950px) {
    .request-container .request-list[b-bdga3wzv84] {
        grid-template-columns: repeat(2, 1fr);
    }
    .request-container .request-list.horizontal[b-bdga3wzv84] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1350px) {
    .request-container .request-list[b-bdga3wzv84] {
        grid-template-columns: repeat(3, 1fr);
    }
    .request-container .request-list.horizontal[b-bdga3wzv84] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1600px) {
    .request-container .request-list[b-bdga3wzv84] {
        grid-template-columns: repeat(4, 1fr);
    }
    .request-container .request-list.horizontal[b-bdga3wzv84] {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* /DashboardCaregiver/ViewChat.razor.rz.scp.css */
/* src/Rise.Client/DashboardCaregiver/ViewChat.razor.css */
*[b-muvo0cl53q] {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

/* Page wrapper */
.chatview-wrapper[b-muvo0cl53q] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
    padding-bottom: 24px;
    background: transparent;
}

/* Heading - sticky like dashboard headers */
.chatview-heading[b-muvo0cl53q] {
    position: sticky;
    top: 0;
    z-index: 15;
    width: 100%;
    background: #FDF9F3;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: none;
}
.chatview-heading h3[b-muvo0cl53q],
.chatview-heading h2[b-muvo0cl53q] {
    font-size: 18px;
    font-weight: 600;
    color: #264027;
    margin: 0;
}
.chatview-heading .meta[b-muvo0cl53q] {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Optional card wrapper to mirror request-card visuals */
.chat-panel[b-muvo0cl53q] {
    width: 100%;
    max-width: 1100px;
    padding: 16px;
    border-radius: 12px;
    background: #fff;
    box-shadow: inset 0 0 0 2px rgba(38,64,39,0.06), 0 1px 6px rgba(0,0,0,0.04);
}

/* Messages container */
.chat-container[b-muvo0cl53q] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 12px;
    width: 100%;
    max-width: 1100px;
}

/* Custom scrollbar */
.chat-container[b-muvo0cl53q]::-webkit-scrollbar {
    width: 8px;
}
.chat-container[b-muvo0cl53q]::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.12);
    border-radius: 4px;
}

/* Message row */
.chat-message[b-muvo0cl53q] {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

/* Avatar */
.chat-message .avatar[b-muvo0cl53q] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 40px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

/* Alignment */
.chat-message.left[b-muvo0cl53q] {
    justify-content: flex-start;
}
.chat-message.right[b-muvo0cl53q] {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

/* Message bubble */
.bubble[b-muvo0cl53q] {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    word-wrap: break-word;
    font-size: 14px;
    color: #1e1e1e;
    line-height: 1.35;
    border: 1px solid rgba(38,64,39,0.04);
}

/* Sent messages (right) get soft green background */
.chat-message.right .bubble[b-muvo0cl53q] {
    background-color: #dff3e6;
    border: 1px solid rgba(76,140,74,0.12);
}

/* Sender meta */
.sender-name[b-muvo0cl53q] {
    font-size: 12px;
    font-weight: 600;
    color: #264027;
    margin-bottom: 6px;
}

/* Deleted/system messages */
.deleted-message[b-muvo0cl53q] {
    font-size: 12px;
    font-weight: 600;
    color: #C9190B;
    margin-bottom: 6px;
    text-align: center;
}

/* Timestamp */
.timestamp[b-muvo0cl53q] {
    font-size: 11px;
    color: #666;
    margin-top: 8px;
    text-align: right;
    display: block;
}

/* Audio message wrapper and controls */
.msg[b-muvo0cl53q] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
.play-btn[b-muvo0cl53q],
.pause-btn[b-muvo0cl53q] {
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 8px;
    color: #264027;
}
.play-btn:hover[b-muvo0cl53q],
.pause-btn:hover[b-muvo0cl53q] {
    background: rgba(38,64,39,0.06);
}

/* Input area - sticky bottom like mobile chat */
.chat-input-area[b-muvo0cl53q] {
    width: 100%;
    max-width: 1100px;
    position: sticky;
    bottom: 0;
    background: #FDF9F3;
    padding: 12px 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.04);
}

/* Message input */
.chat-input[b-muvo0cl53q] {
    flex: 1;
    display: flex;
    gap: 8px;
    align-items: center;
    background: #fff;
    padding: 8px;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(38,64,39,0.04);
}
.chat-input textarea[b-muvo0cl53q] {
    width: 100%;
    min-height: 40px;
    max-height: 120px;
    resize: none;
    border: none;
    outline: none;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    padding: 6px 8px;
    background: transparent;
}

/* Send button */
.send-button[b-muvo0cl53q] {
    background-color: #264027;
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.send-button:active[b-muvo0cl53q] { transform: translateY(1px); }

/* Small action buttons */
.chat-action[b-muvo0cl53q] {
    background: none;
    border: none;
    color: #264027;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive tweaks */
@media (min-width: 768px) {
    .chatview-heading[b-muvo0cl53q] { padding: 16px 32px; }
    .chat-panel[b-muvo0cl53q] { padding: 20px; }
    .chat-container[b-muvo0cl53q] { padding: 16px; max-height: 75vh; }
    .chat-message .avatar[b-muvo0cl53q] { width: 48px; height: 48px; flex: 0 0 48px; }
    .bubble[b-muvo0cl53q] { font-size: 15px; }
}
/* /DashboardCenter/CreateCaregiver.razor.rz.scp.css */
/* src/Rise.Client/DashboardCenter/CreateCaregiver.razor.css */
*[b-qupbq4ga44] {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

/* Page wrapper to match other pages' spacing */
.create-caregiver-container[b-qupbq4ga44] {
    max-width: 1100px;
    margin: 85px auto 24px auto;
    padding: 24px 16px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Headline */
.create-caregiver-container h3[b-qupbq4ga44] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #264027;
    margin-bottom: 0.75rem;
}

/* Form layout */
.create-caregiver-container form[b-qupbq4ga44],
.create-caregiver-container .form-row[b-qupbq4ga44] {
    width: 100%;
}

.create-caregiver-container .form-row[b-qupbq4ga44] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.create-caregiver-container .form-group[b-qupbq4ga44] {
    display: flex;
    flex-direction: column;
}

.create-caregiver-container .form-group.full-width[b-qupbq4ga44] {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
}

.create-caregiver-container label[b-qupbq4ga44] {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1d3320;
    font-size: 0.9rem;
}

/* Inputs */
.create-caregiver-container input.form-control[b-qupbq4ga44],
.create-caregiver-container[b-qupbq4ga44]  input.form-control,
.create-caregiver-container .form-control[b-qupbq4ga44],
.create-caregiver-container input[b-qupbq4ga44],
.create-caregiver-container textarea[b-qupbq4ga44],
.create-caregiver-container select[b-qupbq4ga44] {
    padding: 0.6rem;
    border-radius: 8px;
    border: 1.5px solid #696969;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    transition: box-shadow 0.12s ease, border-color 0.12s ease;
}

.create-caregiver-container input.form-control:focus[b-qupbq4ga44],
.create-caregiver-container[b-qupbq4ga44]  input.form-control:focus,
.create-caregiver-container .form-control:focus[b-qupbq4ga44],
.create-caregiver-container textarea:focus[b-qupbq4ga44],
.create-caregiver-container select:focus[b-qupbq4ga44] {
    outline: none;
    border-color: #264027;
    box-shadow: 0 0 0 4px rgba(38,64,39,0.08);
}

/* Validation messages */
.create-caregiver-container .validation-message[b-qupbq4ga44],
.create-caregiver-container .validation-message *[b-qupbq4ga44] {
    color: #dc2626;
    font-size: 0. eightrem;
    margin-top: 0.25rem;
}

/* Form actions */
.create-caregiver-container .form-actions[b-qupbq4ga44] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
    align-items: start;
}

.create-caregiver-container .form-actions button[b-qupbq4ga44],
.create-caregiver-container .form-actions .btn[b-qupbq4ga44] {
    padding: 0.625rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
}

/* Primary / Secondary */
.create-caregiver-container .form-actions .btn-primary[b-qupbq4ga44],
.create-caregiver-container .form-actions button[type="submit"][b-qupbq4ga44] {
    background-color: #264027;
    color: #F2C94C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.create-caregiver-container .form-actions .btn-secondary[b-qupbq4ga44],
.create-caregiver-container .form-actions button[type="button"][b-qupbq4ga44] {
    background-color: #d1d5db;
    color: #000000;
}

/* Disabled state */
.create-caregiver-container .btn-primary:disabled[b-qupbq4ga44],
.create-caregiver-container .btn-secondary:disabled[b-qupbq4ga44],
.create-caregiver-container button:disabled[b-qupbq4ga44] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Alerts */
.create-caregiver-container .alert[b-qupbq4ga44] {
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Small screens: stack columns and full width buttons */
@media (max-width: 768px) {
    .create-caregiver-container[b-qupbq4ga44] {
        padding: 16px;
        margin: 24px 12px;
    }

    .create-caregiver-container .form-row[b-qupbq4ga44] {
        grid-template-columns: 1fr;
    }

    .create-caregiver-container .form-actions[b-qupbq4ga44] {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .create-caregiver-container .form-actions button[b-qupbq4ga44],
    .create-caregiver-container .form-actions .btn[b-qupbq4ga44] {
        width: 100%;
    }
}

/* Larger screens: slightly wider padding like other pages */
@media (min-width: 768px) {
    .create-caregiver-container[b-qupbq4ga44] {
        padding: 32px;
        margin: 0;
    }
}

/* Utility spacing for small adjustments */
.create-caregiver-container .mt-2[b-qupbq4ga44] { margin-top: 0.5rem; }
.create-caregiver-container .mb-2[b-qupbq4ga44] { margin-bottom: 0.5rem; }
/* /DashboardCenter/DashboardCenter.razor.rz.scp.css */
.center-info[b-dfwx4rczsk] {
    padding: 1rem;
}

.loading-text[b-dfwx4rczsk] {
    color: #666;
    font-style: italic;
}

.error-message[b-dfwx4rczsk] {
    color: red;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid red;
    border-radius: 4px;
    background-color: #fee;
}

.center-details h2[b-dfwx4rczsk] {
    margin-bottom: 1.5rem;
}

.header[b-dfwx4rczsk] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header[b-dfwx4rczsk] {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.info-section[b-dfwx4rczsk] {
    margin-bottom: 2rem;
    flex: 1;
}

.voorziening-links[b-dfwx4rczsk] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .voorziening-links[b-dfwx4rczsk] {
        min-width: 250px;
    }
}

.info-item[b-dfwx4rczsk] {
    margin-bottom: 0.75rem;
}

.info-item strong[b-dfwx4rczsk] {
    margin-right: 0.5rem;
}

.users-section[b-dfwx4rczsk] {
    margin-top: 2rem;
}

.user-list[b-dfwx4rczsk] {
    margin-bottom: 2rem;
}


.user-list[b-dfwx4rczsk]  .mud-table-head .mud-table-cell {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* /DashboardCenter/PendingUsers.razor.rz.scp.css */
.pending-users-container[b-fdl95vcdbx] {
    max-width: 100%;
    margin: 2rem auto;
    padding: 2rem;
}

.loading[b-fdl95vcdbx] {
    text-align: center;
    font-size: 1.2rem;
    color: #264027;
    margin: 2rem 0;
}

.alert[b-fdl95vcdbx] {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.alert-danger[b-fdl95vcdbx] {
    background: #ffe5e5;
    color: #b71c1c;
    border: 1px solid #f44336;
}

.alert-info[b-fdl95vcdbx] {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
}

.pending-user-cards[b-fdl95vcdbx] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
}

.pending-user-card[b-fdl95vcdbx] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(38,64,39,0.08);
    padding: 1.5rem;
    width: 100%;
    flex: 1 1 260px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.card-info[b-fdl95vcdbx] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}

.alert-icon[b-fdl95vcdbx] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5e9;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    box-shadow: 0 0 0 2px #26402722;
}

.card-info-text[b-fdl95vcdbx] {
    flex: 1;
    font-size: 1rem;
    color: #264027;
}

.caregiver-selector[b-fdl95vcdbx] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.caregiver-selector label[b-fdl95vcdbx] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #264027;
    margin: 0;
}

.caregiver-selector select[b-fdl95vcdbx] {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    border: 2px solid #264027;
    border-radius: 8px;
    background: #fff;
    color: #264027;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}

.caregiver-selector select:hover[b-fdl95vcdbx] {
    border-color: #388e3c;
    background: #f5f5f5;
}

.caregiver-selector select:focus[b-fdl95vcdbx] {
    border-color: #388e3c;
    box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.1);
}

.caregiver-selector .text-warning[b-fdl95vcdbx] {
    color: #f57c00;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.action-section[b-fdl95vcdbx] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.act-button[b-fdl95vcdbx] {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    margin: 0;
}

.approve-button[b-fdl95vcdbx] {
    background: #264027;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.approve-button:hover[b-fdl95vcdbx] {
    background: #388e3c;
}

.approve-button:disabled[b-fdl95vcdbx] {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.decline-button[b-fdl95vcdbx] {
    background: #b71c1c;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.decline-button:hover[b-fdl95vcdbx] {
    background: #d32f2f;
}

.card-error[b-fdl95vcdbx] {
    color: #b71c1c;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    font-weight: 500;
}


@media (max-width: 700px) {
    .pending-users-container[b-fdl95vcdbx] {
        padding: 1rem;
    }
    .pending-user-cards[b-fdl95vcdbx] {
        flex-direction: column;
        gap: 1rem;
    }
    .pending-user-card[b-fdl95vcdbx] {
        flex-direction: column;
        align-items: stretch;
        min-width: 100%;
        max-width: 100%;
        gap: 1rem;
    }
    .card-info[b-fdl95vcdbx] {
        margin-bottom: 0;
    }
    .caregiver-selector[b-fdl95vcdbx] {
        min-width: 100%;
        margin: 0;
    }
    .act-button[b-fdl95vcdbx] {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        margin-top: 0.5rem;
    }
}
/* /DashboardResident/Components/FriendRequestCard.razor.rz.scp.css */
.friend-request-card .img-container[b-mhfjxlz0cj] {
    width: auto;
    height: 100%;
}
.friend-request-card .img-container[b-mhfjxlz0cj]  img {
    height: 100%;
    border-radius: 8px;
    aspect-ratio: 1;
    object-fit: cover;
}
.friend-request-card .info-container[b-mhfjxlz0cj] {
    width: fit-content;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 12px;
}
.friend-request-card .info-container .name[b-mhfjxlz0cj] {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.friend-request-card .info-container .age[b-mhfjxlz0cj] {
    font-size: 15px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.friend-request-card .cta-container[b-mhfjxlz0cj] {
    margin-left: auto;
    min-width: 15%;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4px;
}
.friend-request-card .cta-container .action[b-mhfjxlz0cj] {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    padding: 4px;
}
.cta-container .accept-request[b-mhfjxlz0cj] {
    background-color: #63b663;
}
.cta-container .deny-request[b-mhfjxlz0cj] {
    background-color: #d9534f;
}
a[b-mhfjxlz0cj] {
    cursor: pointer;
}
/* /DashboardResident/Components/FriendRequests.razor.rz.scp.css */
.friend-requests-wrapper[b-yr9603b8lb] {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    gap: 16px;
    container-type: inline-size;
}
.friend-requests-wrapper .friend-requests-header[b-yr9603b8lb] {
    margin: 0 16px 0 16px;
}
.friend-requests-wrapper .friend-requests-header h2[b-yr9603b8lb] {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
}
.friend-requests-header h2 span[b-yr9603b8lb] {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-left: 8px;
    font-family: "Poppins", sans-serif;
}

.friend-requests-wrapper .friend-requests-list[b-yr9603b8lb] {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 80%;

    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px; /* same as margin-inline */

    padding-bottom: 12px;
    padding-right: 16px;
}
@container (min-width: 768px) {
    .friend-requests-wrapper .friend-requests-header[b-yr9603b8lb] {
        margin: 0 32px;
    }
    .friend-requests-list[b-yr9603b8lb] {
        padding: 0 32px;
    }
    .friend-requests-wrapper .friend-requests-list[b-yr9603b8lb] {
        grid-auto-columns: 42%;
        scroll-padding-inline: 32px;
    }
    
}
@container (min-width: 1100px) {
    .friend-requests-wrapper .friend-requests-list[b-yr9603b8lb] {
        grid-auto-columns: 30%;
    }
}

.friend-requests-list[b-yr9603b8lb]  .friend-request-card {
    display: flex;
    flex-direction: row;
    height: 100px;
    background-color: #ece7e2;
    margin-left: 16px;
    padding: 8px;
    border-radius: 12px;
    scroll-snap-align: start;
}
/* /DashboardResident/Components/Friends.razor.rz.scp.css */
.loading-text[b-07l5jtmanf] {
    margin: 16px;
    font-size: 16px;
    color: #666;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.friends-wrapper[b-07l5jtmanf] {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    gap: 16px;
}
.friends-wrapper .friends-header[b-07l5jtmanf] {
    margin: 0 16px 0 16px;
}
.friends-wrapper .friends-header h2[b-07l5jtmanf] {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
}
.friends-header h2 span[b-07l5jtmanf] {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-left: 8px;
    font-family: "Poppins", sans-serif;
}

.friends-wrapper .friends-list[b-07l5jtmanf] {
    overflow-x: scroll;
    display: grid;
    grid-auto-flow: column;
    padding: 0 16px 12px 16px;
    gap: 20px;
}

.friends-list .no-friends-text[b-07l5jtmanf] {
    font-family: "Poppins", sans-serif;
    width: 100%;
}

@media (min-width: 768px) {

    .friends-wrapper[b-07l5jtmanf] {
        padding-top: 16px;
    }
    .friends-wrapper .friends-header[b-07l5jtmanf] {
        margin: 0 38px 0 38px;
    }
    .friends-wrapper .friends-list[b-07l5jtmanf] {
        padding: 0 38px;
        grid-auto-columns: 180px !important;
    }
}
/* /DashboardResident/Components/Suggested.razor.rz.scp.css */
.loading-text[b-o00wt28vzc] {
    margin: 16px;
    font-size: 16px;
    color: #666;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.card-wrapper[b-o00wt28vzc] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.card-grid-header[b-o00wt28vzc] {
    position: sticky;
    margin: 0 16px 0 16px;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    top: 0;
    background: #FDF9F3;
}
.card-grid-header h2[b-o00wt28vzc] {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 12px 8px 0;
}
.card-grid-header .filter-container[b-o00wt28vzc] {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 0 8px 12px;
    border-radius: 8px;
}
.card-grid-header .filter-container span[b-o00wt28vzc] {
    font-size: 18px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.card-grid[b-o00wt28vzc] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 16px 34px 16px;
    overflow: visible !important;
    max-height: none !important;
    flex-grow: 0;
}

.card-wrapper .no-suggested-text[b-o00wt28vzc] {
    font-family: "Poppins", sans-serif;
    width: 100%;
    padding: 0 16px 0 16px;
}

/* Popup filtering */
.filter-popup-container[b-o00wt28vzc] {
    width: 100%;
    height: calc(100% - var(--tabbar-h));
    position: absolute;
    top: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.filter-popup[b-o00wt28vzc] {
    background: #ffffff;
    width: 85%;
    border-radius: 12px;
    padding: 22px;
    gap: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.filter-popup .popup-header[b-o00wt28vzc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popup-header span[b-o00wt28vzc] {
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.filter-popup .popup-content[b-o00wt28vzc] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-popup .search-bar[b-o00wt28vzc] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.filter-popup .search-bar p[b-o00wt28vzc] {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    font-family: "Poppins", sans-serif;
}

.filter-popup .search-bar input[b-o00wt28vzc] {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease;
}

.filter-popup .search-bar input:focus[b-o00wt28vzc] {
    border-color: #2f4f2f;
    box-shadow: 0 0 0 2px rgba(47,79,47,0.2);
}

.filter-popup .search-btn[b-o00wt28vzc] {
    padding: 10px 14px;
    background: #2f4f2f;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    transition: background 0.2s ease;
}

.filter-popup .search-bar button:hover[b-o00wt28vzc] {
    background: #3d6f3d;
}

.filter-popup .search-bar button:active[b-o00wt28vzc] {
    transform: scale(0.98);
}

/*Dropdown voor filter op interesses*/

.search[b-o00wt28vzc] {
    display: flex;
    flex-direction: column;
    margin: 5px;
}

.src-button[b-o00wt28vzc]{
    justify-content: center;
    align-items: flex-end;
    background-color: #264027;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 7px;
    margin: 0 14px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.search-bar[b-o00wt28vzc]{
    display: flex;
    flex-direction: row;
    gap: 0.75rem; /* ruimte tussen zoekveld en select */
}

/* standaard styling */
.search-bar input[b-o00wt28vzc] {
    width: 100%;
    transition: max-width 0.3s ease; /* zorgt voor een soepele overgang */
}

/* bij focus groeit de zoekbalk tot 75% van de .search-bar */
.search-bar input:focus[b-o00wt28vzc] {
    flex-basis: 75%;
    outline: none; /* verwijdert standaard blauwe rand */
}

.search-bar .mud-select[b-o00wt28vzc] {
    flex: 2;
}

@media (min-width: 550px) {
    .card-grid[b-o00wt28vzc] {
        grid-template-columns: repeat(3, 1fr);
    }
    .filter-popup[b-o00wt28vzc] {
        width: 400px;
    }
}

@media (min-width: 768px) {
    .filter-popup-container[b-o00wt28vzc] {
        height: 100%;
    }

    .card-grid-header[b-o00wt28vzc] {
        margin: 0;
    }
    .card-grid-header h2[b-o00wt28vzc] {
        padding-left: 38px;
    }
    .card-grid-header .filter-container[b-o00wt28vzc] {
        padding-right: 38px;
    }
    .card-grid[b-o00wt28vzc] {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        padding: 0 38px 34px 38px;
    }
}

@media (min-width: 1024px) {
    .card-grid[b-o00wt28vzc] {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

@media (min-width: 1400px) {
    .card-grid[b-o00wt28vzc] {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 24px;
        max-height: calc(100vh - 320px);
    }
    .card-grid-header h2[b-o00wt28vzc] {
        font-size: 20px;
    }
    .card-grid-header .filter-container span[b-o00wt28vzc] {
        font-size: 20px;
    }
}

@media (min-width: 1920px) {
    .card-grid[b-o00wt28vzc] {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
/* /DashboardResident/Components/UserCard.razor.rz.scp.css */
.card[b-csnr1b3ok0] {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
}

.card[b-csnr1b3ok0]  img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 1;
    object-fit: cover;
}

.name[b-csnr1b3ok0] {
    margin-top: 8px;
    font-weight: 600;
    font-size: 16px;
    color: #1e1e1e;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.age[b-csnr1b3ok0] {
    font-size: 15px;
    color: #666;
    margin-top: 2px;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

@media (min-width: 768px) {
    .name[b-csnr1b3ok0] {
        font-size: 15px;
    }
    .age[b-csnr1b3ok0] {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .name[b-csnr1b3ok0] {
        font-size: 16px;
        margin-top: 10px;
    }
    .age[b-csnr1b3ok0] {
        font-size: 14px;
        margin-top: 4px;
    }
}

@media (min-width: 1400px) {
    .name[b-csnr1b3ok0] {
        font-size: 18px;
        margin-top: 10px;
    }
    .age[b-csnr1b3ok0] {
        font-size: 16px;
        margin-top: 4px;
    }
}
/* /DashboardResident/DashboardResident.razor.rz.scp.css */
:host[b-wi6vubztyv] {
    display: block;
    background: #FDF9F3;
    margin: 0;
    color: #1e1e1e;
    min-height: 100vh;
    overflow-y: auto;
}

/* Welcome page styling */

.welcome-page[b-wi6vubztyv] {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    font-family: "Poppins", sans-serif;
}

.left-side[b-wi6vubztyv] {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left-side .actions-container[b-wi6vubztyv] {
    width: 50%;
    height: 45%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 28px;
}

.left-side .actions-container .text-content[b-wi6vubztyv] {
    height: 20%;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-content h1[b-wi6vubztyv] {
    margin: 0;
    color: #2f4f2f;
}

.text-content p[b-wi6vubztyv] {
    color: #000000;
}

.left-side .actions-container .actions[b-wi6vubztyv] {
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 65%;
}

.actions-container .actions a[b-wi6vubztyv] {
    background-color: #2f4f2f;
    width: 100%;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid rgba(230, 230, 230, 1);
    text-decoration: none;
    color: #F2C94C;
    font-weight: 600;
    transition: background-color 100ms ease-in-out, color 100ms ease-in-out, border-color 100ms ease-in-out;
    will-change: background-color, color;
}

.actions-container .actions a:hover[b-wi6vubztyv] {
    background-color: #F2C94C;
    color: #2f4f2f;
    transition: background-color 100ms ease-in-out, color 100ms ease-in-out, border-color 100ms ease-in-out;
}

.right-side[b-wi6vubztyv] {
    width: 40%;
    background-size: cover;
    background-color: #2f4f2f;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Homepage responsiveness */

@media (max-width: 480px) {
    .right-side[b-wi6vubztyv] {
        display: none;
    }

    .left-side[b-wi6vubztyv] {
        width: 100%;
        padding: 0 20px;
    }

    .left-side .actions-container[b-wi6vubztyv] {
        width: -webkit-fill-available;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .right-side[b-wi6vubztyv] {
        display: none;
    }

    .left-side[b-wi6vubztyv] {
        width: 100%;
        padding: 0 100px;
    }

    .left-side .actions-container[b-wi6vubztyv] {
        width: -webkit-fill-available;
    }
}

@media (max-width: 1024px) {
    .right-side[b-wi6vubztyv] {
        display: none;
    }

    .left-side[b-wi6vubztyv] {
        width: 100%;
    }
}

@media (max-width: 1250px) {
    .right-side[b-wi6vubztyv]  img {
        width: 350px !important;
    }
}


/* Authorized home page view - media queries for responsiveness */

@media (min-width: 1024px) {
    .welcome[b-wi6vubztyv] {
        font-size: 28px;
    }
}

@media (min-width: 1400px) {
    .welcome[b-wi6vubztyv] {
        font-size: 32px;
    }
}
/* /Events/Create.razor.rz.scp.css */
*[b-7apllq7vh2] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.create-event-container[b-7apllq7vh2] {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 60px 40px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.content-wrapper[b-7apllq7vh2] {
    max-width: 900px;
    margin: 0 auto;
}

/* Page Header */
.page-header[b-7apllq7vh2] {
    margin-bottom: 40px;
}

.page-header h1[b-7apllq7vh2] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.page-header .subtitle[b-7apllq7vh2] {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

/* Form Card */
.form-card[b-7apllq7vh2] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.04);
    padding: 48px;
}

/* Form Layout */
.form-row[b-7apllq7vh2] {
    margin-bottom: 32px;
}

.form-row.two-columns[b-7apllq7vh2] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group[b-7apllq7vh2] {
    display: flex;
    flex-direction: column;
}

.form-group.full-width[b-7apllq7vh2] {
    width: 100%;
}

.form-label[b-7apllq7vh2] {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.form-input[b-7apllq7vh2] {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    color: #1e293b;
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input[b-7apllq7vh2]::placeholder {
    color: #94a3b8;
}

.form-input:hover[b-7apllq7vh2] {
    border-color: #cbd5e1;
}

.form-input:focus[b-7apllq7vh2] {
    outline: none;
    border-color: #264027;
    box-shadow: 0 0 0 3px rgba(38, 64, 39, 0.08);
}

.form-textarea[b-7apllq7vh2] {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
    font-family: inherit;
}

/* Validation */
.validation-message[b-7apllq7vh2] {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 6px;
    font-weight: 500;
}

.validation-summary[b-7apllq7vh2] {
    background: #fef2f2;
    border: 1.5px solid #fecaca;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 32px;
    color: #991b1b;
    font-size: 0.9375rem;
}

.validation-summary ul[b-7apllq7vh2] {
    margin: 0;
    padding-left: 20px;
}

/* Alert */
.alert[b-7apllq7vh2] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-size: 0.9375rem;
    font-weight: 500;
}

.alert-error[b-7apllq7vh2] {
    background: #fef2f2;
    border: 1.5px solid #fecaca;
    color: #991b1b;
}

.alert svg[b-7apllq7vh2] {
    flex-shrink: 0;
}

/* Form Actions */
.form-actions[b-7apllq7vh2] {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    padding-top: 16px;
    border-top: 1.5px solid #f1f5f9;
    margin-top: 40px;
}

.btn[b-7apllq7vh2] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    letter-spacing: -0.01em;
}

.btn-primary[b-7apllq7vh2] {
    background: #264027;
    color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover[b-7apllq7vh2] {
    background: #1d3320;
    box-shadow: 0 4px 12px rgba(38, 64, 39, 0.25);
    transform: translateY(-1px);
}

.btn-primary:active[b-7apllq7vh2] {
    transform: translateY(0);
}

.btn-secondary[b-7apllq7vh2] {
    background: #f8fafc;
    color: #475569;
    border: 1.5px solid #e2e8f0;
}

.btn-secondary:hover[b-7apllq7vh2] {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.btn-secondary:active[b-7apllq7vh2] {
    background: #e2e8f0;
}

/* Submitting State */
.submitting-state[b-7apllq7vh2] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.04);
    padding: 64px 48px;
    text-align: center;
}

.spinner[b-7apllq7vh2] {
    width: 48px;
    height: 48px;
    border: 4px solid #e2e8f0;
    border-top-color: #264027;
    border-radius: 50%;
    animation: spin-b-7apllq7vh2 0.8s linear infinite;
    margin: 0 auto 24px;
}

@keyframes spin-b-7apllq7vh2 {
    to { transform: rotate(360deg); }
}

.submitting-state p[b-7apllq7vh2] {
    font-size: 1.125rem;
    color: #475569;
    font-weight: 500;
}

/* Tablet (landscape and smaller desktops) */
@media (max-width: 1024px) {
    .create-event-container[b-7apllq7vh2] {
        padding: 48px 32px;
    }

    .page-header h1[b-7apllq7vh2] {
        font-size: 2.25rem;
    }

    .form-card[b-7apllq7vh2] {
        padding: 40px;
    }
}

/* Tablet (portrait) */
@media (max-width: 768px) {
    .create-event-container[b-7apllq7vh2] {
        padding: 32px 24px;
    }

    .page-header h1[b-7apllq7vh2] {
        font-size: 2rem;
    }

    .page-header .subtitle[b-7apllq7vh2] {
        font-size: 0.9375rem;
    }

    .form-card[b-7apllq7vh2] {
        padding: 32px 24px;
    }

    .form-row.two-columns[b-7apllq7vh2] {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .form-actions[b-7apllq7vh2] {
        flex-direction: column-reverse;
    }

    .btn[b-7apllq7vh2] {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .create-event-container[b-7apllq7vh2] {
        padding: 24px 16px;
    }

    .page-header[b-7apllq7vh2] {
        margin-bottom: 32px;
    }

    .page-header h1[b-7apllq7vh2] {
        font-size: 1.75rem;
    }

    .page-header .subtitle[b-7apllq7vh2] {
        font-size: 0.875rem;
    }

    .form-card[b-7apllq7vh2] {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .form-row[b-7apllq7vh2] {
        margin-bottom: 24px;
    }

    .form-label[b-7apllq7vh2] {
        font-size: 0.875rem;
    }

    .form-input[b-7apllq7vh2] {
        padding: 11px 14px;
        font-size: 1rem;
    }

    .form-actions[b-7apllq7vh2] {
        margin-top: 32px;
        padding-top: 24px;
    }

    .btn[b-7apllq7vh2] {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    .submitting-state[b-7apllq7vh2] {
        padding: 48px 24px;
    }

    .spinner[b-7apllq7vh2] {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
}
/* /Events/EventDetail.razor.rz.scp.css */
*[b-vyoqryyfwk] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.event-detail-wrapper[b-vyoqryyfwk]{
    min-height: 100%;
    overflow-y: auto;
    background-color: #000;
    position: relative;
}

.event-header[b-vyoqryyfwk] {
    position: sticky;
    top: 0;
    width: 100%;
    height: 350px;
    background-image: url("./images/eventPicture.jpg");
    background-size: cover;
    background-position: center;
}
.event-header .image-overlay[b-vyoqryyfwk] {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: linear-gradient(0deg, rgba(0,0,0, 0.7) 0%, rgba(0,0,0,0.2) 50%);
}

.event-content[b-vyoqryyfwk] {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - (350px + 35px + 80px));
    background-color: #FDF9F3;
    z-index: 1;
    padding: 20px 20px 0 20px;
}
.event-content .content-container[b-vyoqryyfwk] {
    height: 100%;
    width: 100%;
}
.event-content .event-name h2[b-vyoqryyfwk] {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #264027;
    margin: 6px 0 16px 0;
}

.event-content .event-information[b-vyoqryyfwk] {
    display: flex;
    flex-direction: column;
}
.event-content .event-information p[b-vyoqryyfwk]{
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    margin: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    white-space: normal;
    word-break: break-word;
}
.event-content .event-information p span[b-vyoqryyfwk] {
    flex: 1;
}

.event-content .event-information h3[b-vyoqryyfwk] {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #264027;
    margin: 20px 0 0 0;
}
.event-content .event-information .event-description[b-vyoqryyfwk] {
    font-size: 15px;
    margin: 8px 0 0 0;
}

.content-container hr[b-vyoqryyfwk] {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0
}

.registration-section[b-vyoqryyfwk] {
    display: flex;
    flex-direction: column;
    padding-bottom: 32px;
}
.status-toggle-group[b-vyoqryyfwk] {
    display: flex;
    gap: 10px;
}

.status-pill[b-vyoqryyfwk] {
    flex: 1;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #d0d0d0;
    background-color: #f5f5f5;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.status-pill.active[b-vyoqryyfwk] {
    background-color: #dfeede;
    border-color: #4a6f49;
    color: #2f4f2a;
}

.status-pill:disabled[b-vyoqryyfwk] {
    opacity: 0.6;
    cursor: default;
}

.status-hint[b-vyoqryyfwk] {
    position: absolute;
    top: 275px;
    left: 0;
    right: 0;
    z-index: 0;
    padding: 30px 16px 65px 16px;
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
    background-color: #d4edda;
    color: #155724;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    transition: .2s all ease-in-out;
    min-width: 100%;
    min-height: 120px;
}
.status-hint span[b-vyoqryyfwk] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-success[b-vyoqryyfwk] {
    position: absolute;
    top: 275px;
    left: 0;
    right: 0;
    z-index: 0;
    padding: 30px 16px 0 16px;
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
    background-color: #d4edda;
    color: #155724;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: .2s all ease-in-out;
    min-width: 100%;    
    min-height: 120px;
}
.alert-success p[b-vyoqryyfwk] {
    text-align: center;
}

.alert-error[b-vyoqryyfwk] {
    position: absolute;
    top: 350px;
    left: 0;
    right: 0;
    z-index: 0;
    padding: 30px 16px 0 16px;
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
    background-color: #f8d7da;
    color: #721c24;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    transition: .2s all ease-in-out;
    min-width: 100%;
    min-height: 120px;
    transform: translateY(-35px);
}

@media (min-width: 768px) {
    .event-detail-wrapper[b-vyoqryyfwk] {
        display: flex;
        flex-direction: column;
    }
    .event-content[b-vyoqryyfwk] {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        position: relative;
        flex: 1;
        margin: 0;
        padding-top: 0;
        overflow-y: auto;
    }
    .alert-error[b-vyoqryyfwk] {
        position: sticky;
        top: 0;
        transform: none;
        min-height: 75px;
        padding: 16px;
        border-radius: 0;
    }
    
    .event-content .content-container .event-name[b-vyoqryyfwk] {
        position: sticky;
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        z-index: 10;
        top: 0;
        background: #FDF9F3;
    } 
}
/* /Events/Events.razor.rz.scp.css */
.events-wrapper .loading[b-3187oukwxm],
.events-wrapper .error[b-3187oukwxm] {
    text-align: center;
    padding: 16px 0;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #555555;
}

.events-wrapper[b-3187oukwxm] {
    padding: 0 0 16px 0;
}

.events-wrapper .event-create-section[b-3187oukwxm] {
    padding: 16px;
    display: flex;
    justify-content: flex-start;
    background-color: #FDF9F3;
}

.events-wrapper .container-header[b-3187oukwxm] {
    background-color: #FDF9F3;
    position: sticky !important;
    top: 0;
    padding: 16px 0
}
.events-wrapper .container-header h2[b-3187oukwxm] {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #264027;
    margin: 0;
    padding: 0 16px;
}

.events-wrapper .favourites-container[b-3187oukwxm] {
    display: flex;
    flex-direction: column;
    padding-bottom: 12px;
}
.events-wrapper .all-events-container[b-3187oukwxm] {
    display: flex;
    flex-direction: column;
}
.events-wrapper .no-events-p[b-3187oukwxm] {
    width: 100%;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #555555;
    padding-bottom: 16px;
}


.events-wrapper .favourites-container .event-list[b-3187oukwxm] {
    overflow-x: scroll;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 225px;
    gap: 20px;
    padding: 0 16px 0 16px;
}
.events-wrapper .all-events-container .event-list[b-3187oukwxm] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 16px 12px 16px;
}

.event-list .event-card[b-3187oukwxm] {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.event-list .event-card .event-image[b-3187oukwxm] {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: 12px;
}
.event-list .event-card .event-info[b-3187oukwxm] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 8px;
}
.event-list .event-card .event-info h2[b-3187oukwxm] {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 4px 0
}
.event-list .event-card .event-info p[b-3187oukwxm] {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

@media (min-width: 500px) {
    .events-wrapper .all-events-container .event-list[b-3187oukwxm] {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .events-wrapper .event-create-section[b-3187oukwxm] {
        padding: 16px 32px;
    }
    .events-wrapper .favourites-container .event-list[b-3187oukwxm] {
        grid-auto-columns: 250px;
        padding: 0 32px 0 32px;
    }
    .events-wrapper .all-events-container .event-list[b-3187oukwxm] {
        padding: 0 32px 12px 32px;
    }
    .events-wrapper .container-header h2[b-3187oukwxm] {
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .events-wrapper .all-events-container .event-list[b-3187oukwxm] {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1600px) {
    .events-wrapper .all-events-container .event-list[b-3187oukwxm] {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
}
/* /Games/Games.razor.rz.scp.css */
.games-container[b-ramfpe2pmm] {
    width: 100%;
    align-items: center;
    font-family: "Poppins", sans-serif;
}

.games-header[b-ramfpe2pmm] {
    text-align: center;
}

.games-text[b-ramfpe2pmm] {
    text-align: center;
}
/* /Helpdesk/ChatBot/Chatbot.razor.rz.scp.css */
.chatbot-container[b-ziwp4jc3vn] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 120px); /* Account for header + mobile tabbar */
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.chatbot-header[b-ziwp4jc3vn] {
    display: flex;
    flex-direction: row;
    padding: 6px 20px;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 70px;
    background: white;
}

.chatbot-header .back-arrow[b-ziwp4jc3vn] {
    position: absolute;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.chatbot-header h3[b-ziwp4jc3vn] {
    margin: 0;
    font-weight: 600;
    font-size: 22px;
}

.chat-messages[b-ziwp4jc3vn] {
    flex: 1;
    overflow-y: auto;
    padding: 80px 20px 20px 20px;
    display: flex;
    flex-direction: column;
}

.chat-messages[b-ziwp4jc3vn]::-webkit-scrollbar {
    width: 6px;
}

.chat-messages[b-ziwp4jc3vn]::-webkit-scrollbar-thumb {
    background: rgba(47, 79, 47, 0.3);
    border-radius: 3px;
}

.chat-messages[b-ziwp4jc3vn]::-webkit-scrollbar-thumb:hover {
    background: rgba(47, 79, 47, 0.5);
}

.message[b-ziwp4jc3vn] {
    margin-bottom: 15px;
    display: flex;
}

.message.user[b-ziwp4jc3vn] {
    justify-content: flex-end;
}

.message.bot[b-ziwp4jc3vn] {
    justify-content: flex-start;
}
.message.user.disabled .message-content[b-ziwp4jc3vn],
.message.bot.disabled .message-content[b-ziwp4jc3vn] {
    background: #e0e0e0;
    color: #1e1e1e;
}
.message-content[b-ziwp4jc3vn] {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.message.user .message-content[b-ziwp4jc3vn] {
    background: #2f4f2f;
    color: white;
}

.message.bot .message-content[b-ziwp4jc3vn] {
    background: white;
    color: #1e1e1e;
}

.question-options[b-ziwp4jc3vn] {
    padding: 24px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    grid-template-areas:
        "prompt"
        "options";
}

.prompt[b-ziwp4jc3vn] {
    grid-area: prompt;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2f4f2f;
    font-size: 15px;
}

.question-btn[b-ziwp4jc3vn] {
    width: 100%;
    padding: 12px 16px;
    background: #264027;
    border: 2px solid #264027;
    border-radius: 8px;
    color: #F2C94C;
    cursor: pointer;
    text-align: left;
    justify-content: flex-start;
    transition: all 0.2s ease;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.question-btn:hover[b-ziwp4jc3vn] {
    transform: translateY(-2px);
}

.question-btn:active[b-ziwp4jc3vn] {
    transform: scale(0.98);
}

.new-session-container[b-ziwp4jc3vn] {
    padding: 20px 20px 35px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.new-session-btn[b-ziwp4jc3vn] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: #264027;
    border: 2px solid #264027;
    border-radius: 8px;
    color: #F2C94C;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.new-session-btn:hover[b-ziwp4jc3vn] {
    background: #2f4f2f;
    color: white;
}

.new-session-btn:active[b-ziwp4jc3vn] {
    transform: scale(0.98);
}

.chat-closed-message[b-ziwp4jc3vn] {
    text-align: center;
    font-weight: 500;
    margin-top: auto;
}

/* Escalated to human POPUP */
.escalated-to-human-container[b-ziwp4jc3vn] {
    width: 100%;
    height: calc(100% - var(--tabbar-h));
    position: absolute;
    top: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.escalated-to-human-popup[b-ziwp4jc3vn] {
    background: #ffffff;
    width: 85%;
    border-radius: 12px;
    padding: 22px;
    gap: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.escalated-to-human-popup .popup-header[b-ziwp4jc3vn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.escalated-to-human-popup .popup-header h2[b-ziwp4jc3vn] {
    font-size: 19px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.escalated-to-human-popup .popup-content[b-ziwp4jc3vn] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.escalated-to-human-popup .popup-content p[b-ziwp4jc3vn] {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    font-family: "Poppins", sans-serif;
}

.escalated-to-human-popup .start-btn[b-ziwp4jc3vn] {
    padding: 10px 14px;
    background: #2f4f2f;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    transition: background 0.2s ease;
}

@media (min-width: 550px) {
    .question-options[b-ziwp4jc3vn] {
        padding: 24px 32px;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "prompt prompt"
            "options options";
    }
}

@media (min-width: 768px) {
    .escalated-to-human-container[b-ziwp4jc3vn] {
        height: 100%;
    }
    .escalated-to-human-popup[b-ziwp4jc3vn] {
        width: 450px;
    }
        .chatbot-container[b-ziwp4jc3vn] {
        height: 100%;
    }

    .chatbot-header h3[b-ziwp4jc3vn] {
        font-size: 24px;
    }

    .chat-messages[b-ziwp4jc3vn] {
        padding: 90px 32px 0 32px;
    }

    .question-options[b-ziwp4jc3vn] {
        padding: 24px 32px;
    }
    .new-session-container[b-ziwp4jc3vn] {
        padding: 24px 32px;
    }
}

@media (min-width: 1200px) {
    .question-options[b-ziwp4jc3vn] {
        padding: 24px 32px;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas:
            "prompt prompt prompt"
            "options options options";
    }
}
@media (min-width: 1400px) {
    .question-options[b-ziwp4jc3vn] {
        padding: 24px 32px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-areas:
            "prompt prompt prompt prompt"
            "options options options options";
    }
}
/* /Helpdesk/Helpdesk/Helpdesk.razor.rz.scp.css */
.helpdesk-container[b-asy8q74lya] {
    padding: 20px 16px;
    flex: 1;
    font-family: 'Poppins', sans-serif;
}

.helpdesk-header[b-asy8q74lya] {
    margin-bottom: 24px;
}

.helpdesk-header h1[b-asy8q74lya] {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 4px 0;
}

.helpdesk-subtitle[b-asy8q74lya] {
    font-size: 16px;
    color: #999999;
    margin: 0;
    font-weight: 400;
}

.category-grid[b-asy8q74lya] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.category-card[b-asy8q74lya] {
    background: white;
    text-decoration: none;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e0e0e0;
}



.category-icon[b-asy8q74lya] {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.category-title[b-asy8q74lya] {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 4px 0;
}

.category-description[b-asy8q74lya] {
    font-size: 13px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

.quick-actions-section[b-asy8q74lya] {
    margin-top: 32px;
}

.quick-actions-section h2[b-asy8q74lya] {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 16px 0;
}

.action-list[b-asy8q74lya] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-item[b-asy8q74lya] {
    background: white;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid #e0e0e0;
}

.action-icon[b-asy8q74lya] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.question-icon[b-asy8q74lya] {
    background-color: #FFEBEE;
}

.contact-icon[b-asy8q74lya] {
    background-color: #264027;
}

.action-content[b-asy8q74lya] {
    flex: 1;
}

.action-title[b-asy8q74lya] {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 2px 0;
}

.action-subtitle[b-asy8q74lya] {
    font-size: 13px;
    color: #999999;
    margin: 0;
}

@media (min-width: 768px) {
    .helpdesk-container[b-asy8q74lya] {
        max-width: 600px;
        padding: 32px 24px;
    }

    .category-grid[b-asy8q74lya] {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category-card[b-asy8q74lya] {
        padding: 32px 20px;
    }
}

@media (min-width: 1024px) {
    .helpdesk-container[b-asy8q74lya] {
        max-width: 800px;
    }

    .category-grid[b-asy8q74lya] {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}
/* /Helpdesk/Videos/Components/VideoList.razor.rz.scp.css */
.videolist[b-j3zn8s12um] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.video-wrapper[b-j3zn8s12um] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
/* /Helpdesk/Videos/Index.razor.rz.scp.css */
.videos-container[b-cpc4emts6m] {
    padding-top: 90px;
    flex: 1;
    font-family: 'Poppins', sans-serif;
}

.videos-container .videos-header[b-cpc4emts6m] {
    padding: 0 16px;
}

.videos-header h1[b-cpc4emts6m] {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
}

.accordion-wrapper[b-cpc4emts6m] {
    position: relative;
    display: flex;
    flex-direction: column;
}
.accordion-wrapper .accordion-header[b-cpc4emts6m] {
    position: sticky;
    margin: 0 16px 0 16px;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    top: 0;
    background: #FDF9F3;
}
.accordion-header h2[b-cpc4emts6m] {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 12px 8px 0;
}

.accordion[b-cpc4emts6m] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 16px 32px 16px;
}

.accordion-item[b-cpc4emts6m] {
    border-radius: 10px;
    overflow: visible;
    background: #264027;
}

/* header behaves like a button */
.accordion-item-header[b-cpc4emts6m] {
    cursor: pointer;
    padding: 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    outline: none;
}

.accordion-title[b-cpc4emts6m] {
    display: inline-block;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 40px);
}

/* icon */
[b-cpc4emts6m] svg{
    transition: transform .25s ease;
    display: inline-block;
}

/* rotate when open */
.accordion-item.is-open[b-cpc4emts6m]  svg{
    transform: rotate(45deg);
}

/* content panel */
.accordion-content[b-cpc4emts6m] {
    overflow: hidden;
    max-height: 0;
    transition: max-height .28s ease, padding .18s ease;
    padding: 0 16px;
    background: #fff;
}

.accordion-item.is-open .accordion-content[b-cpc4emts6m] {
    padding: 12px 16px;
    border-radius: 0 0 10px 10px;
    border: 1px solid #e0e0e0;
}

@media (min-width: 768px) {
    .videos-container[b-cpc4emts6m] {
        padding: 90px 32px 0 32px;
    }

    .videos-container .videos-header[b-cpc4emts6m] {
        padding: 0;
    }
    
    .accordion[b-cpc4emts6m] {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: start;
        padding: 0 0 32px 0
    }

    .accordion-wrapper .accordion-header[b-cpc4emts6m] {
        position: relative;
        margin: 0;
    }

    .accordion-item-header[b-cpc4emts6m] {
        padding: 16px 20px;
    }

    .accordion-content[b-cpc4emts6m] {
        padding: 0 24px;
    }

    .accordion-item.is-open .accordion-content[b-cpc4emts6m] {
        padding: 16px 24px;
    }
}

@media (min-width: 850px) {
    .accordion[b-cpc4emts6m] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .accordion[b-cpc4emts6m] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .accordion[b-cpc4emts6m] {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* /Helpdesk/Voorlichtingen/Voorlichtingen.razor.rz.scp.css */
.voorlichtingen-container[b-26km2syazc] {
    padding-top: 90px;
    flex: 1;
    font-family: 'Poppins', sans-serif;
}

.voorlichtingen-header h1[b-26km2syazc] {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    padding: 16px 16px 0 16px
}

.voorlichtingen-list[b-26km2syazc] {
    padding: 16px 16px 32px 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.voorlichtingen-header[b-26km2syazc] {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.voorlichtingen-grid[b-26km2syazc] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.voorlichting-card[b-26km2syazc] {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.voorlichting-card a[b-26km2syazc] {
    display: flex;
    gap: 16px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
}

.card-image[b-26km2syazc] {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: #F9FAFB;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.add-voorlichting-btn[b-26km2syazc] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #264027;
    color: #F2C94C;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-voorlichting-btn:hover[b-26km2syazc] {
    background-color: #1a2e1b;
}

.popup-overlay[b-26km2syazc] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content[b-26km2syazc] {
    background-color: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.popup-header[b-26km2syazc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.popup-header h2[b-26km2syazc] {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
}

.close-btn[b-26km2syazc] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    color: #666;
}

.close-btn:hover[b-26km2syazc] {
    color: #333;
}

.popup-body[b-26km2syazc] {
    padding: 20px;
}

.form-group[b-26km2syazc] {
    margin-bottom: 16px;
}

.form-group label[b-26km2syazc] {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.form-group input[b-26km2syazc] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus[b-26km2syazc] {
    outline: none;
    border-color: #264027;
}

.popup-footer[b-26km2syazc] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}

.btn-cancel[b-26km2syazc], .btn-save[b-26km2syazc] {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel[b-26km2syazc] {
    background-color: #f5f5f5;
    color: #333;
}

.btn-cancel:hover[b-26km2syazc] {
    background-color: #e0e0e0;
}

.btn-save[b-26km2syazc] {
    background-color: #264027;
    color: #F2C94C;
}

.btn-save:hover:not(:disabled)[b-26km2syazc] {
    background-color: #1a2e1b;
}
.form-group textarea[b-26km2syazc] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    resize: vertical;
    min-height: 80px;
}

.form-group textarea:focus[b-26km2syazc] {
    outline: none;
    border-color: #264027;
}

.btn-save:disabled[b-26km2syazc] {
    opacity: 0.6;
    cursor: not-allowed;
}

.voorlichtingen-list .voorlichting-card[b-26km2syazc] {
    position: relative;
    background-color: #fff;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    gap: 5px;
}
.voorlichting-card .voorzichting-redirect[b-26km2syazc] {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid #e0e0e0;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.voorlichting-card .voorlichting-logo[b-26km2syazc] {
    flex: 1;
    margin: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.voorlichting-card .card-actions[b-26km2syazc] {
    padding: 6px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 20;
}

.voorlichting-card .voorlichting-title[b-26km2syazc] {
    padding: 8px 5px;
    margin: 0;
    background-color: #264027;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #F2C94C;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 380px) {
    .voorlichtingen-list[b-26km2syazc] {
        grid-template-columns: repeat(1, 1fr);
    }
    .voorlichtingen-header h1[b-26km2syazc] {
        font-size: 20px;
        padding: 0 16px 0 16px
    }
}
@media (min-width: 380px) {
    .voorlichtingen-list[b-26km2syazc] {
        grid-template-columns: repeat(2, 1fr);
    }
    .voorlichtingen-header h1[b-26km2syazc] {
        font-size: 20px;
        padding: 0 16px 0 16px
    }
}

@media (min-width: 550px) and (max-width: 768px) {
    .voorlichtingen-list[b-26km2syazc] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .voorlichtingen-list[b-26km2syazc] {
        grid-template-columns: repeat(3, 1fr);
        padding: 20px 32px 32px 32px;
    }
    .voorlichtingen-header h1[b-26km2syazc] {
        font-size: 22px;
        padding: 0 32px 0 32px
    }
}

@media (min-width: 1024px) {
    .voorlichtingen-list[b-26km2syazc] {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1400px) {
    .voorlichtingen-list[b-26km2syazc] {
        grid-template-columns: repeat(5, 1fr);
    }
}
.voorlichting-card-wrapper[b-26km2syazc] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.card-actions[b-26km2syazc] {
    padding: 6px;
    display: flex;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.icon-button[b-26km2syazc] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.icon-button.add[b-26km2syazc] {
    background-color: #264027;
    color: #F2C94C;
}

.icon-button.add:hover[b-26km2syazc] {
    background-color: #1a2e1b;
}

.icon-button.remove[b-26km2syazc] {
    background-color: #dc3545;
    color: white;
}

.icon-button.remove:hover[b-26km2syazc] {
    background-color: #c82333;
}
/* /Identity/Login.razor.rz.scp.css */
*[b-kob21tu64a] {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.notification.is-danger[b-kob21tu64a] {
    color: #ff4d4d;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.login-form-wrapper[b-kob21tu64a] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #FDF9F3;
    gap: 20px;
    padding: 20px
}

.login-form-container[b-kob21tu64a] {
    width: 350px;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 18px;
    border: 1px solid #ccc;
    border-radius: 12px;
    background-color: #2f4f2f;
}
.login-form-container h1[b-kob21tu64a] {
    color: #F2C94C;
    font-weight: 600;
}

.login-form-container .field[b-kob21tu64a] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 12px;
}

.login-form-container .field .field-content[b-kob21tu64a] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.field .field-content .input-label[b-kob21tu64a] {
    color: #FDF9F3;
    font-weight: 500;
    font-size: 18px;
}

/* CHECKBOX */
.login-form-wrapper .field .remember-me-text[b-kob21tu64a] {
    color: #fff;
}

.login-form-wrapper .field .checkbox-input[b-kob21tu64a] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #F2C94C;
    border-radius: 4px;
    background-color: #fff;
    position: relative;
    transition: background-color .15s, border-color .15s;
    outline: none;
}

.login-form-wrapper .field .checkbox-input:checked[b-kob21tu64a] {
    background-color: #F2C94C;
    border-color: #F2C94C;
}

.login-form-wrapper .field .checkbox-input:checked[b-kob21tu64a]::after {
    content: "";
    position: absolute;
    left: 3px;
    bottom: 3px;
    width: 7px;
    height: 10px;
    border: solid #264027;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
}

.login-form-container .buttons-wrapper[b-kob21tu64a] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.login-form-container .buttons-wrapper .login-btn[b-kob21tu64a] {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    background-color: #F2C94C;
    color: #264027;
    cursor: pointer;
    transition: .2s ease-in-out;
}

.buttons-wrapper .no-account-text[b-kob21tu64a] {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}
.no-account-text a[b-kob21tu64a] {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #F2C94C;
    font-weight: 600;
}

/* small responsive tweak */
@media (max-width: 480px) {
    .login-form-container[b-kob21tu64a] { width: 100%; padding: 16px; }
}
/* /Identity/Logout.razor.rz.scp.css */
/* css */
:root[b-1soi6n5er0] {
    --tabbar-h: 0px;
    --tabbar-extra: 0px;
    --tabbar-total: 0px;
}

*[b-1soi6n5er0] {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:global(.main)[b-1soi6n5er0],
:global(.section)[b-1soi6n5er0] {
    padding-bottom: 0 !important;
}
:global(.sidebar-wrapper)[b-1soi6n5er0],
:global(.tabbar-outer-wrapper)[b-1soi6n5er0],
:global(.tabbar-alt-outer-wrapper)[b-1soi6n5er0] {
    display: none !important;
}

.alert-wrapper[b-1soi6n5er0] {
    flex: 1;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #2f4f2f;
}

.alert-container[b-1soi6n5er0] {
    width: 400px;
    height: 300px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 32px;
}

.alert.alert-success[b-1soi6n5er0] {
    font-size: 22px;
    color: #F2C94C;
    font-weight: 600;
}

@keyframes spin-b-1soi6n5er0 {
    to { transform: rotate(360deg); }
}

.buttons-wrapper[b-1soi6n5er0] {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.buttons-wrapper a[b-1soi6n5er0] {
    text-decoration: none;
    color: #2f4f2f;
    font-size: 18px;
    font-weight: 600;
    background-color: #F2C94C;
    padding: 6px 16px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px
}
/* /Identity/Register.razor.rz.scp.css */
*[b-w0bodfjcgv] {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.login-form-wrapper[b-w0bodfjcgv] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #FDF9F3;
    gap: 20px;
    padding: 20px;
}

.login-form-container[b-w0bodfjcgv] {
    width: 420px;
    padding: 18px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 14px;
    border: 1px solid #ccc;
    border-radius: 12px;
    background-color: #2f4f2f;
}

/* header */
.login-form-container h1[b-w0bodfjcgv] {
    color: #F2C94C;
    font-weight: 600;
    align-self: center;
}

/* stepper */
.stepper[b-w0bodfjcgv] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.step[b-w0bodfjcgv] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid transparent;
}
.step.active[b-w0bodfjcgv] {
    background: #F2C94C;
    color: #264027;
    border-color: rgba(0,0,0,0.08);
}
.step-line[b-w0bodfjcgv] {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.06);
}

/* fields */
.login-form-container .field[b-w0bodfjcgv] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.login-form-container .field .field-content[b-w0bodfjcgv] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.field .field-content .input-label[b-w0bodfjcgv] {
    color: #FDF9F3;
    font-weight: 500;
    font-size: 14px;
}

/* inputs */
.input[b-w0bodfjcgv] {
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 16px;
    outline: none;
}

/* buttons area */
.login-form-container .buttons-wrapper[b-w0bodfjcgv] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    width: 100%;
}

.steps-buttons[b-w0bodfjcgv] {
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
}

/* primary/secondary buttons */
.back-btn[b-w0bodfjcgv] {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    border: none;
    box-shadow: inset 0 0 0 1px rgba(242, 201, 76, 0.5); /* subtle inner border look */
    cursor: pointer;
    font-size: 16px;
}

.next-btn[b-w0bodfjcgv] {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    background-color: rgba(242,201,76,0.95);
    color: #264027;
    cursor: pointer;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.03); /* subtle inner border look */
    transition: transform .12s;
}

.register-btn[b-w0bodfjcgv] {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    background-color: #F2C94C;
    color: #264027;
    cursor: pointer;
    box-shadow: inset 0 0 0 2px rgba(0,0,0,0.06); /* inner border effect */
}

.already-account[b-w0bodfjcgv] {
    display: flex;
    justify-content: center;
    align-items: center;
}
.already-account .already-account-text[b-w0bodfjcgv] {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}
.already-account-text a[b-w0bodfjcgv] {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #F2C94C;
    font-weight: 600;
}

.error-messages[b-w0bodfjcgv] {
    color: #ff3d40 !important;
}
.error-msg[b-w0bodfjcgv] {
    color: #ff3d40 !important;
    font-size: 14px;
    margin-top: 4px;
    font-weight: 500;
}

/* small responsive tweak */
@media (max-width: 480px) {
    .login-form-container[b-w0bodfjcgv] { width: 100%; padding: 16px; }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page-wrapper[b-fon2j1918r],
.no-auth-page-wrapper[b-fon2j1918r]{
    height: 100dvh;                    /* or 100dvh on mobile */
    display: flex;
    flex-direction: column;
    padding: 0;
}
@supports not (height: 100dvh) {
    .page-wrapper[b-fon2j1918r] { min-height: 100vh; }
}

header[b-fon2j1918r] {
    flex: 0 0 80px;
}
.main[b-fon2j1918r] {
    flex: 1 1 auto;
    min-height: 0;                    /* IMPORTANT so child can scroll */
    overflow: hidden;                 /* no scroll here */
    padding-bottom: var(--tabbar-h, 0); /* if TabBar is fixed & overlays */
}
.alt-main[b-fon2j1918r] {
    flex: 1 1 auto;
    min-height: 0;                    /* IMPORTANT so child can scroll */
    overflow: hidden;                 /* no scroll here */
    padding-bottom: var(--tabbar-h, 0); /* if TabBar is fixed & overlays */
}

.main-no-tabbar[b-fon2j1918r] {
    flex: 1 1 auto;
    min-height: 0;                    /* IMPORTANT so child can scroll */
    overflow: hidden;                 /* no scroll here */
    padding-bottom: 0;                /* no TabBar if on chotpage */
}

.section[b-fon2j1918r] {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #FDF9F3;
}

.alt-section[b-fon2j1918r] {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #FDF9F3;
}

.section-no-tabbar[b-fon2j1918r] {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

footer[b-fon2j1918r] {
    flex: 0 0 auto;
}

@media (min-width: 768px) {
    @media (min-width: 768px) {
        .page-wrapper.chat-full[b-fon2j1918r],
        .no-auth-page-wrapper.chat-full[b-fon2j1918r] {
            width: 100%;
        }
    }
    .page-wrapper[b-fon2j1918r] {
        position: absolute;
        width: calc(100% - 250px);
        right: 0;
    }
    .main[b-fon2j1918r],
    .alt-main[b-fon2j1918r]{
        padding-bottom: 0;
    }
    .section[b-fon2j1918r],
    .alt-section[b-fon2j1918r] {
        padding: 0;
    }
    header[b-fon2j1918r] {
        display: none !important;
    }
}
/* /Layout/NavBar.razor.rz.scp.css */
.navbar.mobile-nav-fixed[b-083ddm3s1m] {
    background-color: #264027;
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    position: fixed;
}

.navbar-content[b-083ddm3s1m] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.navbar-content .navbar-item[b-083ddm3s1m] {
    display: flex;
    align-items: center;
}
.navbar-item .image[b-083ddm3s1m] {
    display: flex;
    align-items: center;
    margin: 0;
}

@media (min-width: 768px) {
    .navbar.mobile-nav-fixed[b-083ddm3s1m] {
        display: none !important;
    }
}

[b-083ddm3s1m] .navbar-item.active {
    color: #F2C94C;
}

[b-083ddm3s1m] .navbar-item {
    color: #FFFFFF;
}
/* /Layout/TabBar.razor.rz.scp.css */
.sidebar-wrapper[b-o6i2kfcgfs] {
    display: none !important;
}

.tabbar-outer-wrapper[b-o6i2kfcgfs] {
    position: fixed;
    display: flex;
    align-items: flex-end;
    left: 0; right: 0; bottom: 0;
    height: calc(var(--tabbar-h) + 20px);
    z-index: calc(1000*1000);
    background-clip: padding-box;
}
.tabbar-alt-outer-wrapper[b-o6i2kfcgfs] {
    position: fixed;
    display: flex;
    align-items: flex-end;
    left: 0; right: 0; bottom: 0;
    height: calc(var(--tabbar-h));
    z-index: calc(1000*1000);
    background-clip: padding-box;
}

.tabbar-inner-wrapper[b-o6i2kfcgfs] {
    height: var(--tabbar-h);
    display: flex;
    width: 100%;
    align-items: stretch;
    justify-content: space-between;
    gap: 8px;
    padding: 0 25px;
    background-color: #264027;
}
[b-o6i2kfcgfs] a.logout-tab-item {
    color: #fb6959;
    text-decoration: none;
}

[b-o6i2kfcgfs] a.tab-item,
[b-o6i2kfcgfs] a.center-tab-item {
    color: #fff;
    text-decoration: none;
}
[b-o6i2kfcgfs] .center-tab-inner:has(.center-tab-item.active) {
    background-color: #264027;
    color: #F2C94C;
    box-shadow: inset 0 0 0 2px #F2C94C;
}
[b-o6i2kfcgfs] .center-tab-inner:has(.center-tab-item.active) > a.center-tab-item {
    color: #F2C94C;
}
[b-o6i2kfcgfs] a.tab-item.active {
    color: #F2C94C;
}

.tabbar-inner-left[b-o6i2kfcgfs] {
    width: calc(50% - calc(var(--tabbar-h) + 20px) / 2);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2.2rem;
    height: 100%;
    color: #fff;
}
.tabbar-inner-right[b-o6i2kfcgfs] {
    width: calc(50% - calc(var(--tabbar-h) + 20px) / 2);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2.2rem;
    height: 100%;
}

.tabbar-inner-wrapper .center-tab-wrapper[b-o6i2kfcgfs] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #264027;
    width: 90px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    padding-top: 7px;
}
.center-tab-wrapper .center-tab-inner[b-o6i2kfcgfs] {
    background-color: #F2C94C;
    height: var(--tabbar-h);
    width: var(--tabbar-h);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* tabbar caregiver */
.tabbar-inner-caregiver[b-o6i2kfcgfs] {
    padding: 0 16px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.tabbar-inner-caregiver[b-o6i2kfcgfs]  a.tab-item.active {
    color: #F2C94C;
}

/* tabbar center*/
.tabbar-inner-center[b-o6i2kfcgfs] {
    padding: 0 16px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .tabbar-outer-wrapper[b-o6i2kfcgfs] {
        display: none !important;
    }
    .tabbar-alt-outer-wrapper[b-o6i2kfcgfs] {
        display: none !important;
    }
    
    .sidebar-wrapper[b-o6i2kfcgfs] {
        display: flex !important;
        width: 250px;
        height: 100%;
        position: fixed;
        left: 0; top: 0;
        flex-direction: column;
        background-color: #264027;
        padding: 16px 22px;
        gap: 25px;
    }
    
    .sidebar-wrapper .sidebar-header[b-o6i2kfcgfs] {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .sidebar-wrapper .sidebar-links[b-o6i2kfcgfs] {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .sidebar-wrapper[b-o6i2kfcgfs]  a.tab-item,
    .sidebar-wrapper[b-o6i2kfcgfs]  a.logout-tab-item {
        width: 100%;
        padding: 16px 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
    }
    .sidebar-wrapper[b-o6i2kfcgfs]  a.tab-item span,
    .sidebar-wrapper[b-o6i2kfcgfs]  a.logout-tab-item span {
        font-family: "Poppins", sans-serif;
        font-size: 18px;
        font-weight: 600;
    }
    
    .sidebar-wrapper .sidebar-footer[b-o6i2kfcgfs] {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: auto;
    }
}
/* /Notifications/Index.razor.rz.scp.css */
*[b-6kx9w4hd6c] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.loading-text[b-6kx9w4hd6c], .no-notifications-text[b-6kx9w4hd6c] {
    text-align: center;
    padding: 16px 16px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #555555;
}

.notifications-wrapper[b-6kx9w4hd6c] {
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
    gap: 2px;
}

.notifications-wrapper .notification-header[b-6kx9w4hd6c] {
    position: sticky;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    top: 0;
    background: #FDF9F3;
}
.notification-header h2[b-6kx9w4hd6c] {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 12px 8px 0;
}
.notification-header h2 span[b-6kx9w4hd6c] {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-left: 8px;
    font-family: "Poppins", sans-serif;
}
.notification-list[b-6kx9w4hd6c] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 16px 0 16px;
}
/* /Notifications/NotificationCard.razor.rz.scp.css */
.notification-card[b-0q00jjr27e] {
    display: flex;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 0 0 1px #e0e0e0;
    position: relative;
    align-items: center;
    justify-content: space-between;
    font-family: "Poppins", sans-serif;
}

.notification-content[b-0q00jjr27e] {
    display: flex;
    align-items: stretch; /* Changed from center */
    flex-direction: row;
    flex: 1;
    gap: 1rem;
}
.notification-content .notification-sidebar[b-0q00jjr27e] {
    display: flex;
    flex-direction: column;
    color: #264027;
    gap: 12px;
    align-self: stretch;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.notification-sidebar .notification-icon[b-0q00jjr27e] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.notification-details[b-0q00jjr27e] {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: #264027;
    gap: 6px;
}
.notification-details .notification-header[b-0q00jjr27e] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.notification-header p[b-0q00jjr27e] {
    font-size: 17px;
    font-weight: 600;
}

.notification-details .notification-body[b-0q00jjr27e] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.notification-body .notification-message[b-0q00jjr27e] {
    margin: 0 22px 0 0;
    font-size: 14px;
    font-weight: 500;
}

.notification-body .notification-time[b-0q00jjr27e] {
    font-size: 13px;
    color: #264027;
    text-align: right;
    font-weight: 500;
}

.unread-indicator[b-0q00jjr27e] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Color classes for different notification types */
.event-notification .notification-icon[b-0q00jjr27e] {
    background-color: #3273dc;
}
.event-notification .unread-indicator[b-0q00jjr27e] {
    background-color: #3273dc;
}

.friend-notification .notification-icon[b-0q00jjr27e] {
    background-color: #48c774;
}
.friend-notification .unread-indicator[b-0q00jjr27e] {
    background-color: #48c774;
}

.alert-notification .notification-icon[b-0q00jjr27e] {
    background-color: #ff3860;
}
.alert-notification .unread-indicator[b-0q00jjr27e] {
    background-color: #ff3860;
}

.general-notification .notification-icon[b-0q00jjr27e] {
    background-color: #7957d5;
}
.general-notification .unread-indicator[b-0q00jjr27e] {
    background-color: #7957d5;
}
/* /Notifications/NotificationPopup.razor.rz.scp.css */
.notification-card[b-vu97zw0zw0] {
    position: absolute;
    z-index: calc(1000*1000);
    width: 96%;
    left: 2%;
    top: calc(10px + (var(--index) * 10px));
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 80px;
    background-color: rgb(50, 94, 49, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    padding: 10px 15px 10px 15px;
    color: white;
    font-family: "Poppins", sans-serif;

    animation: show-b-vu97zw0zw0 600ms 100ms cubic-bezier(0.38, 0.97, 0.56, 0.76) forwards;
    opacity: 0;
    transform: rotateX(-90deg);
    transform-origin: top center;
}

.notification-info[b-vu97zw0zw0] {
    display: flex;
    flex-direction: column;
}

.notification-title[b-vu97zw0zw0] {
    font-weight: bold;
    font-size: 17px;
}

.notification-content[b-vu97zw0zw0] {
    font-size: 14px;
}

@keyframes show-b-vu97zw0zw0 {
    100% {
        opacity: 1;
        transform: none;
    }
}

.notification-card.closing[b-vu97zw0zw0] {
    animation: hide-b-vu97zw0zw0 250ms cubic-bezier(0.55, 0.08, 0.68, 0.53) forwards;
}

@keyframes hide-b-vu97zw0zw0 {
    0% {
        opacity: 1;
        transform: none;
    }
    100% {
        opacity: 0;
        transform: rotateX(90deg);
    }
}
/* /Profile/EditInterests.razor.rz.scp.css */
*[b-ocypq87akf] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.loading-text[b-ocypq87akf] {
    text-align: center;
    padding: 16px 0;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #555555;
}

.interests[b-ocypq87akf]{
    min-height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-family: 'Poppins', sans-serif;
    padding: 16px
}

.my-interests[b-ocypq87akf] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.my-interests .my-interests-heading[b-ocypq87akf]{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.my-interests .save-button[b-ocypq87akf]{
    display: flex;
    background-color: #264027;
    color: #F2C94C;
    border: none;
    cursor: pointer;
    align-items:center;
    justify-content:space-between;
    min-height:48px;
    padding: 0 12px;
    border-radius:10px;
    gap: 4px;

    font-family:'Poppins', sans-serif;
    font-weight:600;
    font-size: 1.1em;

    text-decoration:none;
}

.interests h2[b-ocypq87akf]{
    color: #264027;
    font-weight: 600;
}

/*Interesses toevoegen*/
.interest-list-container[b-ocypq87akf] {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    justify-items: center;
}

.frame:hover[b-ocypq87akf] {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.interest-item[b-ocypq87akf] {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    color: #264027;
    font-size: 1.3em;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: transform 0.2s ease, border 0.4s ease;
    overflow: hidden;
    container-type: size;
    position: relative;
}

.interest-add-btn[b-ocypq87akf]{
    position: absolute;
    right: 4px;
    top: 4px;
    border: none;
    color: #264027;
}

.interest-info[b-ocypq87akf] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 4px;
}

.interest-info span[b-ocypq87akf] {
    display: block;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    flex-grow: 1;
    line-height: 1.3;
    overflow: hidden;
}

.add-interests[b-ocypq87akf] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 550px) {
    .interest-list-container[b-ocypq87akf] {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 680px) {
    .interest-list-container[b-ocypq87akf] {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 768px) {
    .interests[b-ocypq87akf] {
        padding: 32px;
    }
    .interest-list-container[b-ocypq87akf] {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 950px) {
    .interest-list-container[b-ocypq87akf] {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1250px) {
    .interest-list-container[b-ocypq87akf] {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1400px) {
    .interest-list-container[b-ocypq87akf] {
        grid-template-columns: repeat(7, 1fr);
    }
}

@media (min-width: 1600px) {
    .interest-list-container[b-ocypq87akf] {
        grid-template-columns: repeat(8, 1fr);
    }
}
/* /Profile/FriendProfile.razor.rz.scp.css */
*[b-y8t88rxvvs] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.loading-text[b-y8t88rxvvs],
.user-notfound-text[b-y8t88rxvvs]{
    text-align: center;
    padding: 16px 16px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #555555;
}

.profile[b-y8t88rxvvs]{
    min-height: 100%;
    overflow-y: scroll;
    gap: 12px;
    background-color: #fff;
}

/* PROFILE HEADER */
.profile-header[b-y8t88rxvvs] {
    position: sticky;
    top: 0;
    width: 100%;
    height: 400px;
    background-size: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.profile-header .image-overlay[b-y8t88rxvvs] {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0, 0.4) 0%, rgba(0,0,0,0.1) 30%);
    padding: 16px;
}
.profile-information[b-y8t88rxvvs] {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    position: sticky;
    overflow: hidden;
    margin-top: -35px;
    background-color: #FDF9F3;
    isolation: isolate;
    padding: 20px 20px 0 20px;
}
.profile-information .action-buttons[b-y8t88rxvvs] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profile-information .action-buttons[b-y8t88rxvvs]  button {
    background-color: #264027;
    padding: 12px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.profile-information .action-buttons[b-y8t88rxvvs]  .block-large {
    display: none;
}
.profile-header .image-overlay[b-y8t88rxvvs]  .block-small {
    position: absolute;
    background-color: #264027;
    padding: 12px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    top: 15px;
    right: 15px;
}

.profile-information .action-buttons[b-y8t88rxvvs]  button span,
.profile-header .image-overlay[b-y8t88rxvvs]  .block-small span {
    color: #F2C94C;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 15px;
}

.profile-information .information-container[b-y8t88rxvvs] {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.information-container h2[b-y8t88rxvvs] {
    font-family: 'Poppins', sans-serif;
    font-size: 2em;
    color: #264027;
    margin-bottom: 6px;
}
.information-container p[b-y8t88rxvvs] {
    font-family: 'Poppins', sans-serif;
    color: #264027;
    font-size: 16px;
    font-weight: 500;
}

/*USER INFORMATION*/
.interests-container[b-y8t88rxvvs] {
    padding: 32px 0;
}
.interests-container h3[b-y8t88rxvvs] {
    padding: 0 0 16px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    color: #264027;
    font-weight: 500;
}
.interest-list[b-y8t88rxvvs] {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per rij */
    gap: 16px;
    width: 100%;
    justify-items: center;
}

/* received friend request */
.received-request[b-y8t88rxvvs] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.received-request span[b-y8t88rxvvs] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    font-weight: 500;
}

.received-request div[b-y8t88rxvvs] {
    display: flex;
    gap: 8px;
}

@media (min-width: 550px) {
    .profile[b-y8t88rxvvs] {
        display: grid;
        grid-template-columns: 170px 1fr;
        grid-template-rows: 170px auto 1fr;
        grid-template-areas:
            "header info"
            "settings settings"
            "interests interests";
        gap: 24px;
        padding: 80px 32px 0 32px;
        background-color: #FDF9F3;
        align-items: start;
    }

    .profile-header[b-y8t88rxvvs] {
        grid-area: header;
        position: relative;
        height: 170px;
        width: 170px;
        border-radius: 50%;
        background-size: cover;
        box-shadow: none;
    }

    .profile-header .image-overlay[b-y8t88rxvvs] {
        padding: 0;
        border-radius: 50%;
    }

    .profile-information[b-y8t88rxvvs] {
        display: contents;
        margin-top: 0;
        padding: 0;
        background: none;
        border-radius: 0;
    }

    /* keep the information container in flow for the grid areas */
    .profile-information .information-container[b-y8t88rxvvs] {
        display: contents;
    }

    /* move action buttons into the settings area and make them full width */
    .profile-information .action-buttons[b-y8t88rxvvs] {
        grid-area: settings;
        width: 100%;
        gap: 24px
    }
    .profile-information .action-buttons[b-y8t88rxvvs]  button {
        width: 100%;
        gap: 0;
        justify-content: space-between;
        padding: 12px 22px;
    }

    .information-container .information-name-age[b-y8t88rxvvs] {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        height: 100%;
    }

    .interests-container[b-y8t88rxvvs] {
        grid-area: interests;
        padding: 0;
    }

    .box span[b-y8t88rxvvs] {
        font-size: 1.1em;
    }

    .profile-header .image-overlay[b-y8t88rxvvs]  .block-small {
        display: none
    }
    .profile-information .action-buttons[b-y8t88rxvvs]  .block-large {
        display: flex;
    }
    .profile-information .action-buttons[b-y8t88rxvvs] {
        justify-content: flex-start;
    }
    .profile-information .action-buttons[b-y8t88rxvvs]  button {
        width: fit-content;
        gap: 12px;
    }
}

@media (min-width: 850px) {
    
}
/* /Profile/NotFound.razor.rz.scp.css */
.notfound-wrapper[b-2knkuypmfr] {
    width: 100%;
    height: 100%;
    background-color: #FDF9F3;
    text-align: center;
    padding: 60px;
}

.notfound-title[b-2knkuypmfr] {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.notfound-text[b-2knkuypmfr] {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.no-account-text[b-2knkuypmfr] {
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
}

.home-link[b-2knkuypmfr] {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #F2C94C;
    font-weight: 600;
}
/* /Profile/Profile.razor.rz.scp.css */
*[b-9nfd82i737] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.loading-text[b-9nfd82i737], .user-notfound-text[b-9nfd82i737] {
    text-align: center;
    padding: 16px 0;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #555555;
}
.role-text[b-9nfd82i737] {
    font-family: Poppins, sans-serif;
    color: #264027;
    font-weight: 500;
}

.profile[b-9nfd82i737]{
    min-height: 100%;
    overflow-y: scroll;
    gap: 12px;
    background-color: #FDF9F3;
}

.profile-header[b-9nfd82i737] {
    position: sticky;
    top: 0;
    width: 100%;
    height: 400px;
    background-size: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.profile-header .image-overlay[b-9nfd82i737] {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0, 0.4) 0%, rgba(0,0,0,0.1) 30%);
    padding: 16px;
}
.profile-information[b-9nfd82i737] {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    position: sticky;
    overflow: hidden;
    margin-top: -35px;
    background-color: #FDF9F3;
    isolation: isolate;
    padding: 20px 20px 0 20px;
}

.profile-information .settings[b-9nfd82i737] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.profile-information .settings[b-9nfd82i737]  a.settings-btn {
    background-color: #264027;
    padding: 12px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.profile-information .settings[b-9nfd82i737]  a.settings-btn span {
    color: #F2C94C;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 15px;
}

.profile-information .information-container[b-9nfd82i737] {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.information-container h2[b-9nfd82i737] {
    font-family: 'Poppins', sans-serif;
    font-size: 2em;
    color: #264027;
    margin-bottom: 6px;
}
.information-container p[b-9nfd82i737] {
    font-family: 'Poppins', sans-serif;
    color: #264027;
    font-size: 16px;
    font-weight: 500;
}
[b-9nfd82i737] .button-navlink span{
    flex:1 1 auto;
    text-align:center;
}

/*USER INFORMATION*/
.interests-container[b-9nfd82i737] {
    padding: 32px 0;
}
.interests-container h3[b-9nfd82i737] {
    padding: 0 0 16px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    color: #264027;
    font-weight: 500;
}

/* Container voor alle interesse-items + de plus-knop */
.interest-list[b-9nfd82i737] {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per rij */
    gap: 16px;
    width: 100%;
    justify-items: center;
}

/* Gedeelde box-stijl (basis voor alle tegels) */
.box[b-9nfd82i737] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 120px;
    border-radius: 10px;
    padding: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: transform 0.2s ease, border 0.4s ease;
}

.box:hover[b-9nfd82i737] {
    transform: translateY(-4px);
    border: 1px solid #264027;
}

.box .box-horizontal-line:first-of-type[b-9nfd82i737] {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    transform: rotate(45deg);
}
.box .box-horizontal-line:last-of-type[b-9nfd82i737] {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    transform: rotate(135deg);
}

/* Interesses (witte tegels) */
.interest-item[b-9nfd82i737] {
    border: 1px solid #e0e0e0;
    color: #264027;
}

/* Plusknop */
.button-editinterests[b-9nfd82i737]{
    background-color: #264027;
    padding: 0 !important;
}
.button-editinterests[b-9nfd82i737]  a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

[b-9nfd82i737] .box a {
    color: #F2C94C;
    text-decoration: none;
}

.button-editinterests a:hover[b-9nfd82i737] {
    color: #f0f0f0; /* optioneel: lichtere kleur bij hover */
    text-decoration: none; /* blijft zonder onderlijn */
}

/* Tekst onder icon netjes gecentreerd */
.box span[b-9nfd82i737] {
    margin-top: 8px;
    font-size: 0.9em;
}

/* Geen interesses gevonden */
.no-interests[b-9nfd82i737] {
    grid-column: 1 / -1; /* neemt de volle breedte in */
    text-align: center;
    color: #666;
    font-style: italic;
}

/* UPLOAD SECTION */
.image-upload-container[b-9nfd82i737] {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.file-input[b-9nfd82i737],
.file-input[b-9nfd82i737]::file-selector-button {
    display: none !important;
}

/* Alternative: hide the entire InputFile wrapper */
[b-9nfd82i737] .file-input {
    display: none !important;
}


.upload-label[b-9nfd82i737] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #264027;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.upload-label:hover[b-9nfd82i737] {
    background-color: #1a2d1b;
}

.upload-label svg[b-9nfd82i737] {
    stroke: currentColor;
    fill: none;
}

@media (min-width: 550px) {
    .profile[b-9nfd82i737] {
        display: grid;
        grid-template-columns: 170px 1fr;
        grid-template-rows: 170px auto 1fr;
        grid-template-areas:
            "header info"
            "settings settings"
            "interests interests";
        gap: 24px;
        padding: 32px 32px 0 32px;
        background-color: #FDF9F3;
        align-items: start;
    }

    .profile-header[b-9nfd82i737] {
        grid-area: header;
        position: relative;
        height: 170px;
        width: 170px;
        border-radius: 50%;
        background-size: cover;
        box-shadow: none;
    }

    .profile-header .image-overlay[b-9nfd82i737] {
        padding: 0;
        border-radius: 50%;
    }

    .profile-information[b-9nfd82i737] {
        display: contents;
        margin-top: 0;
        padding: 0;
        background: none;
        border-radius: 0;
    }

    .profile-information .information-container[b-9nfd82i737] {
        display: contents;
    }
    
    .profile-information .settings[b-9nfd82i737] {
        grid-area: settings;
        width: 170px;
    }
    .profile-information .settings[b-9nfd82i737]  a.settings-btn {
        width: 100%;
        gap: 0;
        justify-content: space-between;
        padding: 12px 22px;
    }
    
    .information-container .information-name-age[b-9nfd82i737] {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        height: 100%;
    }

    .interests-container[b-9nfd82i737] {
        grid-area: interests;
        padding: 0;
    }

    .interest-list[b-9nfd82i737] {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .box span[b-9nfd82i737] {
        font-size: 1.1em
    }
}

@media (min-width: 1024px) {
    .interest-list[b-9nfd82i737] {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1250px) {
    .interest-list[b-9nfd82i737] {
        grid-template-columns: repeat(5, 1fr);
    }
}
/* /Settings/Components/BlockedUserListItem.razor.rz.scp.css */
div[b-mmz6hi9mfp] {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

a[b-mmz6hi9mfp] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: auto;
}

[b-mmz6hi9mfp] img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
/* /Settings/Components/BlockedUsers.razor.rz.scp.css */
div[b-f7n5z7py1g] {
    max-width: 400px;
    display: grid;
    gap: 1rem;
    padding-block: 1rem;
}

p[b-f7n5z7py1g] {
    padding-block: 1rem;
}
/* /Settings/Components/ChangeProfilePictureDialog.razor.rz.scp.css */
.title[b-4bfsma3rzz] {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.content[b-4bfsma3rzz] {
    padding: 0 20px 10px;
}

.buttons[b-4bfsma3rzz] {
    padding: 8px;
    display: flex;
    gap: 8px;
}
/* /Settings/Components/NotificationSettings.razor.rz.scp.css */
.noti-settings-title[b-zcmvd6f5dd] {
    font-family: 'Poppins', sans-serif;
    color: #264027;
    padding-bottom: 16px;
}

.switch-controls[b-zcmvd6f5dd] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.control-container[b-zcmvd6f5dd] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.control-text-fields[b-zcmvd6f5dd] {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}

.saving[b-zcmvd6f5dd] {
    font-size: 10px;
    font-weight: 600;
}
/* /Settings/Components/ProfilePicture.razor.rz.scp.css */
.form[b-dxkf1e6oeg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.buttons[b-dxkf1e6oeg] {
    display: flex;
    gap: 12px;
}
.buttons button[b-dxkf1e6oeg] {
    background-color: #264027;
    padding: 12px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #F2C94C;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 15px;
}
.buttons button:last-of-type[b-dxkf1e6oeg] {
    background-color: #FFFFFF;
    color: #264027;
    box-shadow: inset 0 0 0 2px #264027;
}
.buttons button:disabled[b-dxkf1e6oeg] {
    color: #a3a3a3; 
    background: none;
    cursor: not-allowed;
    box-shadow: inset 0 0 0 2px #e0e0e0;
}

[b-dxkf1e6oeg] img {
    width: 175px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    border: 1px solid #999;
}

@media (min-width: 1024px) {
    .buttons[b-dxkf1e6oeg] {
        flex-direction: column;
    }
}

@media (min-width: 1250px) {
    .buttons[b-dxkf1e6oeg] {
        flex-direction: row;
    }
    [b-dxkf1e6oeg] img {
        width: 220px;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
        display: block;
        border-radius: 50%;
        border: 1px solid #999;
    }
}
/* /Settings/Components/ProfileSettings.razor.rz.scp.css */
.form[b-s4asoyfkbw] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: "Poppins", sans-serif;
}

.form .inputs label[b-s4asoyfkbw] {
    display: flex;
    flex-direction: column;
    gap: 6px;            /* space between label text and input */
    margin-bottom: 12px; /* space between fields */
    font-weight: 600;
    align-items: stretch;/* ensure children take full width */
}

.form .inputs label input[b-s4asoyfkbw]{
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #fff;
    font: inherit;
    font-weight: 500;
}

.buttons[b-s4asoyfkbw] {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    padding-top: 8px;
}
.buttons button[b-s4asoyfkbw] {
    background-color: #264027;
    padding: 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #F2C94C;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 15px;
}
.buttons button:last-of-type[b-s4asoyfkbw] {
    background: none;
    color: #264027;
    box-shadow: inset 0 0 0 2px #264027;
}

.buttons a[b-s4asoyfkbw] {
    background-color: #C9190B;
    padding: 12px;
    border-radius: 14px;
    display: flex;
    margin: 0 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 15px;
}

@media (min-width: 768px) {
    .buttons a[b-s4asoyfkbw] {
        display: none !important;
    }
}

@media (min-width: 650px) {
    .form[b-s4asoyfkbw] {
        padding-top: 12px;
    }
    .inputs[b-s4asoyfkbw] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}
/* /Settings/Settings.razor.rz.scp.css */
.settings-wrapper[b-jifibyh0bk] {
    display: flex;
    flex-direction: column;
    padding: 85px 16px 0 16px;
}

.loading-text[b-jifibyh0bk],
.not-found-text[b-jifibyh0bk]{
    text-align: left;
    padding: 16px 0;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #555555;
}

.settings-wrapper .settings-header[b-jifibyh0bk] {
    padding-bottom: 24px;
}

.settings-wrapper .settings-header h1[b-jifibyh0bk] {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #264027;
}

.settings-wrapper .settings-content-wrapper[b-jifibyh0bk] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-container[b-jifibyh0bk] {
    padding-bottom: 0;
}

.notification-settings[b-jifibyh0bk] {
    padding-bottom: 32px;
}

@media (min-width: 768px) {
    .settings-wrapper[b-jifibyh0bk] {
        padding: 90px 32px 0 32px;
    }
}

@media (min-width: 1024px) {
    .settings-wrapper .settings-content-wrapper[b-jifibyh0bk] {
        display: flex;
        flex-direction: row-reverse;
        gap: 32px;
    }
    
    .info-container[b-jifibyh0bk] {
        padding-bottom: 0;
        flex: 1;
    }
}

@media (min-width: 1250px) {
    .info-container[b-jifibyh0bk] {
        width: 60%;
    }
    .profile-picture-container[b-jifibyh0bk] {
        width: 40%;
    }
}
/* /Users/Interests/Components/ProfileInterests.razor.rz.scp.css */
.interest-list[b-zo0sey502d] {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per rij */
    gap: 16px;
    width: 100%;
    justify-items: center;
}

/* Gedeelde box-stijl (basis voor alle tegels) */
.box[b-zo0sey502d] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 120px;
    border-radius: 10px;
    padding: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: transform 0.2s ease, border 0.4s ease;
}

.box .box-horizontal-line:first-of-type[b-zo0sey502d] {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    transform: rotate(45deg);
}
.box .box-horizontal-line:last-of-type[b-zo0sey502d] {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    transform: rotate(135deg);
}

.box:hover[b-zo0sey502d] {
    transform: translateY(-4px);
    border: 1px solid #264027;
}

/* Interesses (witte tegels) */
.interest-item[b-zo0sey502d] {
    border: 1px solid #e0e0e0;
    color: #264027;
}

/* Plusknop */
.button-editinterests[b-zo0sey502d]{
    background-color: #264027;
}

[b-zo0sey502d] .box a {
    color: #F2C94C; /* of #fff */
    text-decoration: none; /* verwijdert onderlijn */
}

.button-editinterests a:hover[b-zo0sey502d] {
    color: #f0f0f0; /* optioneel: lichtere kleur bij hover */
    text-decoration: none; /* blijft zonder onderlijn */
}

/* Tekst onder icon netjes gecentreerd */
.box span[b-zo0sey502d] {
    margin-top: 8px;
    font-size: 0.9em;
}

/* Geen interesses gevonden */
.no-interests[b-zo0sey502d] {
    grid-column: 1 / -1; /* neemt de volle breedte in */
    text-align: center;
    color: #666;
    font-style: italic;
}

@media (min-width: 550px) {
    .interest-list[b-zo0sey502d] {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .box span[b-zo0sey502d] {
        font-size: 1.1em
    }
}

@media (min-width: 1024px) {
    .interest-list[b-zo0sey502d] {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1250px) {
    .interest-list[b-zo0sey502d] {
        grid-template-columns: repeat(5, 1fr);
    }
}
