.input-error {
    border: 1px solid red;
    outline: none;
}
.input-success {
    border: 1px solid green;
    outline: none;
}
circle {
    stroke: #24b47e;
}
.success .icon .checkmark {
    stroke: #24b47e;
}
.success .title {
    color: #32325d;
    font-size: 16px !important;
}
.success .message {
    color: #8898aa;
    font-size: 13px !important;
}

/* Draw circle */
@keyframes drawCircle {
    0% {
        stroke-dasharray: 251.2;
        stroke-dashoffset: 251.2;
    }
    100% {
        stroke-dasharray: 251.2;
        stroke-dashoffset: 0;
    }
}

/* Draw checkmark */
@keyframes drawCheck {
    0% {
        stroke-dasharray: 60;
        stroke-dashoffset: 60;
    }
    100% {
        stroke-dasharray: 60;
        stroke-dashoffset: 0;
    }
}
.animate-circle {
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    animation: drawCircle 0.6s ease-out forwards; /* Faster */
}
.animate-check {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: drawCheck 0.3s ease-out forwards; /* Faster */
    animation-delay: 0.6s; /* Starts right after circle */
}
.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.hidden {
    display: none;
}

.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid green;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #2c2c2c;
    color: white;
    padding: 16px;
    font-size: 14px;
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.cookie-actions {
    margin-top: 10px;
}
.cookie-actions button {
    margin: 5px;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
#accept-all {
    color: white;
}
#accept-essential {
    background-color: #888;
    color: white;
}
.custom-select {
    position: relative;
    width: 100%;
    z-index: 1000; /* Make sure the dropdown appears above other elements */
}

.options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 150px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid #ccc;
    border-top: none;
    display: none;
    z-index: 1000;
}

.option {
    padding: 8px;
    cursor: pointer;
}

.option:hover {
    background-color: #f0f0f0;
}

.option.more {
    font-style: italic;
    color: #888;
}
/* Show on desktop, hide on mobile */
.m-navbar {
    display: none;
}

@media (min-width: 768px) {
    .m-navbar {
        display: flex !important;
    }
}