:root {
    --primary1: #ee7827;
    --primary2: #204d5e;
    --secondary1: #94f79b;
    --secondary2: #d0ffff;
    --secondary3: #fdfd6f;
    --secondary4: #255c6d;
    --secondary5: #f5f5f5;
    --secondary6: #7ecaeb;
    --secondary7: #204d5e;
    --secondary8: #ffd3b5;
    --secondary9: #d9eafd;
    --secondary10: #c0c0c0;
    --secondary11: #ecf4fe;
    --secondary12: #e9e9e9;
    --secondary13: white;
    --secondary14: rgba(238, 120, 39, 0.9);
    --secondary15: #ffff96;
    --secondary16: #cff480;
    --secondary17: #f2fed9;
    --secondary18: #e3f7ff;
    --secondary19: #ffede0;
}

@font-face {
    font-family: "Segoe UI Custom";
    src: url("../../fonts/Segoe UI.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Segoe UI Custom";
    src: url("../../fonts/Segoe UI Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Segoe UI Custom";
    src: url("../../fonts/Segoe UI Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Segoe UI Custom";
    src: url("../../fonts/Segoe UI Bold Italic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Segoe UI Black Italic";
    src: url("../../fonts/segoe-ui-black-italic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

textarea {
    resize: none !important;
}

.no_result {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    background-color: #ecf4fe;
    padding: 32px;
    margin-bottom: 40px;
    border-radius: 30px;
}

.no_result .message {
    font-family: Urbanist, sans-serif !important;
    margin-bottom: 0 !important;
    color: var(--primary2) !important;
}

/* Video Popup Overlay Styling */
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 27, 27, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-popup-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 80%;
    max-height: 80%;
}

.close-video-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -8%;
    right: 0px;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
}

.close-video-popup img {
    width: 20px;
    height: 20px;
}

#popup-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid #c0bbbb;
}
