:root {
    --form-primary-color: white;
    --form-primary-dark: white;
    --form-secondary-color: #93C01D;
    --form-text-muted: #666666;
    --form-background-color: #1D1D1D;
    --form-text-color: white;
    --form-btn-text-color: #000;
    --form-success-color: #95c11f;
    --form-border-color: white;
    --form-shadow-color: white;
    --form-checkbox-border: lightgray;
}

/* Universal styles */
* {
    font-family: 'Roboto Condensed', sans-serif;
    scrollbar-width: thin;
    scrollbar-color: var(--form-secondary-color) var(--form-background-color);
}

/* For WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 10px;
    background: var(--form-background-color);
}

::-webkit-scrollbar-track {
    background: var(--form-background-color);
}

::-webkit-scrollbar-thumb {
    background: var(--form-secondary-color);
}

html body {
    margin: 0 auto;
}

html body .survey-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html body .survey-body {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.6;
    color: var(--form-text-color);
    background-color: var(--form-background-color);
    font-weight: 300;
    margin: 0;
    padding: 0;
}

html body .survey-container {
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    padding-top: 0;
}

/* Main Content */
.main-content {
    margin-top: 50px;
}

.no-operators {
    color: var(--form-text-color);
}

/* Header Styles */
html body .survey-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #353535;
    z-index: 1000;
    padding: 0;
}

body .survey-container .survey-nav {
    margin-left: 75.6px;
    padding: 1.25rem 0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    box-sizing: border-box;
}

body .survey-container .survey-logo {
    display: flex;
    align-items: center;
}

.survey-container .survey-logo .survey-logo-img {
    width: 200px;
}

/* Hero Section */
body .survey-container .survey-hero {
    padding: 3rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #1B1B1B11 0%, #1B1B1B22 100%);
}

.survey-container .survey-hero .survey-hero-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--form-secondary-color);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.survey-container .survey-hero .survey-hero-text {
    font-size: 1.25rem;
    color: var(--form-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Survey Container */
.survey-container main .survey-main-container {
    padding: 2rem;
    background: var(--form-background-color);
    border-radius: 30px;
    box-shadow: rgba(236, 236, 236, 0.16) 0px 4px 44px 0px;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 30px;
}

/* Progress Bar */
main .survey-main-container .survey-progress-bar {
    width: 100%;
    height: 10px;
    background-color: var(--form-border-color);
    border-radius: 30px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.survey-main-container .survey-progress-bar .survey-progress {
    height: 100%;
    background-color: var(--form-secondary-color);
    border-radius: 0;
    transition: width 0.3s ease;
    width: 25%;
}

/* Question Styles */
.survey-main-container .survey-question-container .survey-question {
    display: none;
    animation: fadeIn 0.5s ease;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.survey-main-container .survey-question-container .survey-question.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.survey-main-container .survey-question-container .survey-question.slide-in-right {
    animation: slideInRight 0.5s ease forwards;
    position: absolute;
    top: 0;
    left: 0;
}

.survey-main-container .survey-question-container .survey-question.slide-in-left {
    animation: slideInLeft 0.5s ease forwards;
    position: absolute;
    top: 0;
    left: 0;
}

.survey-main-container .survey-question-container .survey-question.slide-out-right {
    animation: slideOutRight 0.5s ease forwards;
    position: absolute;
    top: 0;
    left: 0;
}

.survey-main-container .survey-question-container .survey-question.slide-out-left {
    animation: slideOutLeft 0.5s ease forwards;
    position: absolute;
    top: 0;
    left: 0;
}

/* Question Container */
.survey-main-container .survey-question-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.survey-question-container .survey-question .survey-question-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--form-text-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Options Styling */
.survey-question .survey-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.survey-question .survey-options .survey-option-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    background: var(--form-primary-color);
    font-size: 1rem;
    color: var(--form-btn-text-color);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Roboto Condensed', sans-serif;
    width: 100%;
    text-align: center;
}

.survey-question .survey-options .survey-option-btn:hover {
    border: none;
    background-color: var(--form-secondary-color);
    color: white;
    transform: none;
}

.survey-question .survey-options .survey-option-btn.selected {
    background-color: var(--form-secondary-color);
    border: none;
    color: white;
    box-shadow: inset 0px 1px 8px gray;
}

/* Options and Inputs Sliding Animation */
.survey-question .survey-options .survey-option-btn,
.survey-question .survey-contact-form .survey-form-group {
    opacity: 0;
    transform: translateX(20px);
}

.survey-main-container .survey-question-container .survey-question.active .survey-option-btn,
.survey-main-container .survey-question-container .survey-question.active .survey-form-group {
    animation: slideInElement 0.4s ease forwards;
}

.survey-main-container .survey-question-container .survey-question.active .survey-option-btn:nth-child(1),
.survey-main-container .survey-question-container .survey-question.active .survey-form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.survey-main-container .survey-question-container .survey-question.active .survey-option-btn:nth-child(2),
.survey-main-container .survey-question-container .survey-question.active .survey-form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.survey-main-container .survey-question-container .survey-question.active .survey-option-btn:nth-child(3),
.survey-main-container .survey-question-container .survey-question.active .survey-form-group:nth-child(3) {
    animation-delay: 0.3s;
}

.survey-main-container .survey-question-container .survey-question.active .survey-option-btn:nth-child(4),
.survey-main-container .survey-question-container .survey-question.active .survey-form-group:nth-child(4) {
    animation-delay: 0.4s;
}

.survey-main-container .survey-question-container .survey-question.active .survey-form-group:nth-child(5) {
    animation-delay: 0.5s;
}

.survey-main-container .survey-question-container .survey-question.active .survey-submit-btn {
    opacity: 0;
    animation: fadeIn 0.5s ease 0.6s forwards;
}

/* Navigation Buttons */
.survey-main-container .survey-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.survey-main-container .survey-nav-buttons .survey-nav-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 150px;
    text-align: center;
}

.survey-main-container .survey-nav-buttons .survey-prev-btn {
    background-color: transparent;
    color: var(--form-text-color);
    border: 1px solid var(--form-primary-color);
}

.survey-main-container .survey-nav-buttons .survey-prev-btn:hover {
    background-color: var(--form-secondary-color);
    color: white;
    transform: none;
}

.survey-main-container .survey-nav-buttons .survey-next-btn {
    background-color: transparent;
    color: var(--form-text-color);
    border: 1px solid var(--form-primary-color);
    margin-left: auto;
}

.survey-main-container .survey-nav-buttons .survey-next-btn:hover {
    background-color: var(--form-secondary-color);
    color: white;
    transform: none;
}

.survey-question .survey-contact-form .survey-submit-btn {
    background-color: var(--form-primary-color);
    color: var(--form-btn-text-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    text-wrap: auto;
    opacity: 0;
}

.survey-question .survey-contact-form .survey-submit-btn:hover {
    background-color: var(--form-secondary-color);
    transform: none;
    color: var(--form-text-color);
}

/* Contact Form */
.survey-question-container .survey-question .survey-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.survey-question .survey-contact-form .survey-form-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.survey-contact-form .survey-form-group .survey-form-input {
    padding: 1rem 1.5rem !important;
    border: 1px solid var(--form-border-color);
    border-radius: 30px;
    font-size: 1rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    transition: all 0.2s ease;
    background-color: white;
    width: 100%;
    box-sizing: border-box;
    min-height: 50px;
}

.survey-contact-form .survey-form-group .survey-form-input:focus {
    outline: none;
    border-color: var(--form-secondary-color);
    background-color: white;
    box-shadow: none;
}

/* Footer Styles */
body .survey-container .survey-footer {
    background-color: white;
    padding: 4rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid var(--form-border-color);
    position: relative;
    overflow: hidden;
    width: 100%;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.survey-question .survey-contact-form .checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.survey-question .survey-contact-form .checkbox-container input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--form-border-color);
    border-radius: 2px;
    margin-top: 0.25rem;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    padding: 0;
    min-width: 20px;
    min-height: 20px;
    flex: 0 0 20px;
}

.checkbox-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--form-checkbox-border);
    border-radius: 2px;
    margin-right: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    padding: 0;
    min-width: 20px;
    min-height: 20px;
    flex-shrink: 0;
    background-color: white;
}

.checkbox-option input[type="checkbox"]:checked {
    background-color: var(--form-secondary-color);
    border-color: #22c55e; 
}

.checkbox-option input[type="checkbox"]:checked::after {
    content: '\2714';
    font-size: 14px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.survey-question .survey-contact-form .checkbox-container input[type="checkbox"]:checked {
    background-color: var(--form-secondary-color);
    border-color: var(--form-secondary-color);
}

.survey-question .survey-contact-form .checkbox-container input[type="checkbox"]:checked::after {
    content: '\2714';
    font-size: 14px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.survey-question .survey-contact-form .checkbox-container label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--form-text-color);
    line-height: 1.5;
}

body .survey-container .survey-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--form-primary-color), var(--form-secondary-color));
}

.survey-container .survey-footer .survey-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.survey-footer .survey-footer-content .survey-footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.survey-footer-content .survey-footer-section .survey-footer-section-title {
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--form-text-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.survey-footer-content .survey-footer-section .survey-footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--form-secondary-color);
}

.survey-footer .survey-footer-section p {
    color: var(--form-text-muted);
    margin: 0;
    line-height: 1.6;
}

.survey-footer-section .survey-social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.survey-footer-section .survey-social-links .survey-social-link {
    color: var(--form-text-muted);
    font-size: 1.5rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background-color: transparent;
    border: 1px solid var(--form-border-color);
}

.survey-footer-section .survey-social-links .survey-social-link:hover {
    color: white;
    background-color: var(--form-secondary-color);
    transform: none;
    border-color: var(--form-secondary-color);
}

.survey-container .survey-footer .survey-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--form-border-color);
    color: var(--form-text-muted);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px 0;
    box-sizing: border-box;
}

.survey-footer .survey-footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Success Message Styles */
.survey-main-container .success-message {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.survey-main-container .success-message i {
    color: var(--form-success-color);
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.survey-main-container .success-message h2 {
    margin: 1rem 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    color: var(--form-text-color);
    text-transform: uppercase;
}

.survey-main-container .success-message p {
    color: var(--form-text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideInElement {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .survey-container .survey-hero .survey-hero-title {
        font-size: 2rem;
    }

    .survey-container .survey-hero .survey-hero-text {
        margin: 1rem;
        font-size: 1rem;
    }

    .survey-container main .survey-main-container {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
    }

    .survey-question-container .survey-question .survey-question-title {
        font-size: 1.25rem;
    }

    .survey-question .survey-options .survey-option-btn {}

    body .survey-container .survey-header {}

    .survey-container .survey-logo h1 {
        font-size: 1.25rem;
    }

    body .survey-container .survey-footer {}

    .survey-container .survey-footer .survey-footer-content {}

    .survey-container .survey-footer .survey-footer-bottom {}

    .survey-footer-section .survey-social-links {}

    .survey-footer-section .survey-social-links .survey-social-link {
        font-size: 1.25rem;
    }

    body .survey-container .survey-nav {}

    .survey-container .survey-logo .survey-logo-img {}

    .survey-main-container .survey-question-container {
    }
}

@media (max-width: 480px) {
    html body .survey-container {}

    body .survey-container .survey-hero {}

    .survey-main-container .survey-nav-buttons {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .survey-main-container .survey-nav-buttons .survey-nav-btn {
        width: 100%;
    }

    .survey-container .survey-footer .survey-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .survey-footer-content .survey-footer-section .survey-footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .survey-footer-section .survey-social-links {
        justify-content: center;
    }

    .survey-container .survey-footer .survey-footer-bottom {}

    body .survey-container .survey-nav {}

    .survey-main-container .survey-question-container {}
}

/* Captcha Container */
.captcha-container {
    text-align: center;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeIn 0.5s ease;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.95));
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.captcha-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--form-primary-color);
    position: relative;
    display: inline-block;
}

.captcha-container h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--form-secondary-color);
}

.captcha-container p {
    max-width: 600px;
    margin: 1.5rem 0;
    color: var(--form-text-muted);
    line-height: 1.6;
    font-size: 1.1rem;
}

.captcha-error {
    color: #e74c3c;
    font-weight: 500;
    min-height: 24px;
    margin-bottom: 0.5rem;
    display: none;
}

.captcha-btn {
    max-width: 250px;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--form-primary-color), #353535);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    border-radius: 4px;
    color: white;
}

.captcha-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #353535, var(--form-secondary-color));
    color: white;
}

.captcha-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.captcha-btn:disabled {
    background: #777;
    cursor: not-allowed;
    transform: translateY(0);
    box-shadow: none;
}

.captcha-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1);
    transform-origin: 50% 50%;
}

.captcha-btn:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(40);
        opacity: 0;
    }
}

.captcha-info {
    font-size: 0.8rem;
    color: var(--form-text-muted);
    margin-top: 1rem;
    justify-self: center;
}

.captcha-info a {
    color: var(--form-secondary-color);
    text-decoration: none;
}

.captcha-info a:hover {
    text-decoration: underline;
}

/* Checkbox options styling */
.checkbox-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checkbox-option {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    background: var(--form-primary-color);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    border-left: 4px solid transparent;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: slideInElement 0.4s ease forwards;
    opacity: 0;
    transform: translateX(20px);
}

.checkbox-option:hover {
    background-color: var(--form-secondary-color);
    color: white;
}

.checkbox-option input[type="checkbox"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
}

.checkbox-option label {
    font-size: 1rem;
    cursor: pointer;
    flex: 1;
    color: var(--form-btn-text-color);
}

/* When checkbox is checked */
.checkbox-option:has(input:checked) {
    background-color: var(--form-secondary-color);
    color: white;
    box-shadow: inset 0px 1px 8px gray;
}

.checkbox-option:has(input:checked) label {
    color: white;
    font-weight: 500;
}

/* Animation for multiple choices */
.survey-main-container .survey-question-container .survey-question.active .checkbox-option:nth-child(1) {
    animation-delay: 0.1s;
}

.survey-main-container .survey-question-container .survey-question.active .checkbox-option:nth-child(2) {
    animation-delay: 0.2s;
}

.survey-main-container .survey-question-container .survey-question.active .checkbox-option:nth-child(3) {
    animation-delay: 0.3s;
}

.survey-main-container .survey-question-container .survey-question.active .checkbox-option:nth-child(4) {
    animation-delay: 0.4s;
}

.survey-main-container .survey-question-container .survey-question.active .checkbox-option:nth-child(5) {
    animation-delay: 0.5s;
}

/* Animation for error state */
@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

.shake {
    animation: shake 0.5s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
}

/* Tariff Calculator Styles */
.tariff-calculator {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.calculator-step {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countries-title-container,
.operators-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.countries-title-container .filter-container,
.operators-title-container .filter-container {
    flex-shrink: 0;
    min-width: 250px;
}

.step-title {
    display: flex;
    align-items: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    color: var(--form-text-color);
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--form-secondary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 1rem;
}

.step-description {
    font-size: 1rem;
    color: var(--form-text-color);
    margin: 0.75rem 0 1.5rem 0;
    padding-left: 3rem;
    line-height: 1.5;
    font-weight: 300;
    font-style: italic;
}

.step-content {
    padding-left: 3rem;
}

/* Countries Section */
.countries-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.countries-grid {
    height: 400px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

/* Country Toggle Button - base style matches unselected country-item */
.country-toggle-btn {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.9rem;
    color: var(--form-text-color);
    justify-content: center;
    gap: 0.5rem;
    grid-column: 1 / -1; /* Span across all columns */
}

/* Deselect All state (when all are selected) - matches selected country-item */
.country-toggle-btn[data-action="deselect-all"] {
    background: rgba(149, 193, 31, 0.2);
    border: 1px solid var(--form-secondary-color);
}

.country-toggle-btn[data-action="deselect-all"] i {
    color: var(--form-secondary-color);
    font-size: 1rem;
}

.country-toggle-btn:hover {
    background: rgba(149, 193, 31, 0.1);
    border-color: var(--form-secondary-color);
}

.country-toggle-btn[data-action="deselect-all"]:hover {
    background: rgba(149, 193, 31, 0.3);
    border-color: var(--form-secondary-color);
}

/* Operator Toggle Button - matches country toggle button styling */
.operator-toggle-btn {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.9rem;
    color: var(--form-text-color);
    justify-content: center;
    gap: 0.5rem;
    grid-column: 1 / -1; /* Span across all columns */
}

/* Deselect All state (when all are selected) - matches selected operator-item */
.operator-toggle-btn[data-action="deselect-all"] {
    background: rgba(149, 193, 31, 0.2);
    border: 1px solid var(--form-secondary-color);
}

.operator-toggle-btn[data-action="deselect-all"] i {
    color: var(--form-secondary-color);
    font-size: 1rem;
}

.operator-toggle-btn:hover {
    background: rgba(149, 193, 31, 0.1);
    border-color: var(--form-secondary-color);
}

.operator-toggle-btn[data-action="deselect-all"]:hover {
    background: rgba(149, 193, 31, 0.3);
    border-color: var(--form-secondary-color);
}

.operator-toggle-btn i {
    font-size: 1rem;
    color: white;
}

.operator-toggle-btn .toggle-text {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.country-toggle-btn:active {
    transform: translateY(0);
}

.country-toggle-btn i {
    font-size: 1rem;
    color: white;
}

.country-toggle-btn .toggle-text {
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Action Buttons Container */
.action-buttons-container {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    width: 100%; /* Ensure full width on both containers */
}

/* Mobile responsive for action buttons */
@media (max-width: 768px) {
    .action-buttons-container {
        gap: 0.5rem; /* Slightly smaller gap on mobile */
        flex-wrap: nowrap; /* Prevent wrapping to keep buttons side by side */
    }
    
    /* Ensure buttons fit side by side on mobile */
    .country-toggle-btn, .operator-toggle-btn,
    .country-clear-btn, .operator-clear-btn {
        min-width: 0; /* Override min-width on mobile */
        flex: 1; /* Equal distribution */
        font-size: 0.8rem; /* Slightly smaller text on mobile */
        padding: 0.75rem; /* Slightly smaller padding */
    }
}

/* Clear All Buttons - Exact same styling as toggle buttons */
.country-clear-btn, .operator-clear-btn {
    display: flex;
    align-items: center;
    justify-content: center; /* Center content like toggle buttons */
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.9rem; /* Same as toggle buttons */
    color: var(--form-text-color); /* Same as toggle buttons */
    gap: 0.5rem; /* Same gap as toggle buttons */
    flex: 1;
    min-width: 120px;
    box-sizing: border-box;
}

.country-clear-btn:hover, .operator-clear-btn:hover {
    background: rgba(149, 193, 31, 0.1);
    border-color: var(--form-secondary-color);
}

.country-clear-btn:active, .operator-clear-btn:active {
    transform: translateY(0);
}

.country-clear-btn i, .operator-clear-btn i {
    font-size: 1rem; /* Same as toggle buttons */
    color: white; /* Same as toggle buttons */
}

.country-clear-btn .clear-text, .operator-clear-btn .clear-text {
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Adjust toggle buttons for flex layout */
.country-toggle-btn, .operator-toggle-btn {
    flex: 1;
    min-width: 140px;
    box-sizing: border-box;
    /* Keep the original justify-content: center from the main definition */
}

.country-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.country-item:hover {
    background: rgba(149, 193, 31, 0.1);
    border-color: var(--form-secondary-color);
}

.country-item.selected {
    background: rgba(149, 193, 31, 0.2);
    border-color: var(--form-secondary-color);
}

.country-checkbox {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    background-color: white;
    transition: all 0.2s ease;
    position: relative;
}

.country-checkbox:checked {
    background-color: var(--form-secondary-color);
    border-color: #22c55e;
}

.country-checkbox:checked::after {
    content: '\2714';
    font-size: 14px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.country-info {
    flex: 1;
    margin-right: 1rem;
}

.country-name {
    font-weight: 600;
    color: var(--form-text-color);
    margin-bottom: 0.25rem;
}

.country-code {
    font-size: 0.9rem;
    color: var(--form-text-muted);
}

.percentage-input {
    display: flex;
    align-items: center;
    position: relative;
}

.percentage-input input {
    width: 45px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--form-text-color);
    text-align: center;
    font-size: 16px;
}

.percentage-input input:focus {
    outline: none;
    border-color: var(--form-secondary-color);
}

.percentage-input input.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.percentage-symbol {
    margin-left: 0.5rem;
    color: var(--form-text-color);
    font-weight: 600;
}

/* Map Container */
.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.world-map {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    font-size: 18px;
}

.map-loading i {
    font-size: 48px;
    margin-bottom: 10px;
    color: #e74c3c;
}

.map-legend {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    z-index: 1;
    max-width: 200px;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid #333;
}

.legend-color.available {
    background-color: rgba(232, 244, 248, 0.8);
    border-color: #b0b0b0;
}

.legend-color.selected {
    background-color: var(--form-secondary-color);
    border-color: var(--form-secondary-color);
}

.legend-color.unavailable {
    background-color: rgba(245, 245, 245, 0.6);
    border-color: #999;
}

/* OpenLayers Tooltip Styles */
.map-tooltip {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    pointer-events: none;
    max-width: 200px;
}

.map-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.8);
}

.tooltip-content {
    text-align: center;
    line-height: 1.4;
}

.tooltip-content strong {
    display: block;
    margin-bottom: 2px;
    color: #fff;
}

.tooltip-content small {
    color: #ccc;
    font-size: 12px;
}

.tooltip-content em {
    color: #87ceeb;
    font-style: normal;
    font-size: 12px;
}

/* OpenLayers Override Styles */
.ol-zoom {
    top: 10px;
    left: 10px;
}

.ol-zoom button {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 14px !important;
    color: #333 !important;
    transition: all 0.2s ease !important;
}

.ol-zoom button:hover {
    background: rgba(255, 255, 255, 1) !important;
    border-color: #888888 !important;
    color: #888888 !important;
}

.ol-attribution {
    bottom: 5px;
    right: 5px;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 6px;
    border-radius: 3px;
}

.ol-attribution a {
    color: #666;
    text-decoration: none;
}

.ol-attribution a:hover {
    text-decoration: underline;
}

/* Country Popup Styles (Legacy - can be removed if not needed) */
.country-popup {
    text-align: center;
    padding: 10px;
    max-width: 200px;
}

.country-popup-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.country-popup-code {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.country-popup-status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.country-popup-status.available {
    background-color: #e8f5e8;
    color: #2e7d32;
}

.country-popup-status.unavailable {
    background-color: #ffebee;
    color: #c62828;
}

.country-popup-button {
    background-color: #888888;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.country-popup-button:hover {
    background-color: #666666;
}

/* Operators Section */
.operators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.operator-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.operator-item:hover {
    background: rgba(149, 193, 31, 0.1);
    border-color: var(--form-secondary-color);
}

.operator-item.selected {
    background: rgba(149, 193, 31, 0.2);
    border-color: var(--form-secondary-color);
}

.operator-checkbox {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    background-color: white;
    transition: all 0.2s ease;
    position: relative;
}

.operator-checkbox:checked {
    background-color: var(--form-secondary-color);
    border-color: #22c55e;
}

.operator-checkbox:checked::after {
    content: '\2714';
    font-size: 14px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.operator-name {
    flex: 1;
    font-weight: 600;
    color: var(--form-text-color);
    margin-right: 1rem;
}

/* AC/DC Section */
.ac-dc-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 600px;
}

.ac-dc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ac-dc-item label {
    font-weight: 600;
    color: var(--form-text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.ac-dc-item .percentage-input {
    justify-content: center;
}

.ac-dc-item .percentage-input input {
    width: 100px;
    font-size: 1.2rem;
    padding: 0.75rem;
}

/* Calculate Button */
.calculator-actions {
    text-align: center;
    margin: 3rem 0;
}

.calculate-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--form-secondary-color), #7ba51a);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.calculate-btn:hover {
    background: linear-gradient(135deg, #7ba51a, var(--form-secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(149, 193, 31, 0.3);
}

.calculate-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Results Section */
.results-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(149, 193, 31, 0.1);
    border-radius: 15px;
    border: 1px solid var(--form-secondary-color);
    display: block;
}

.results-section.hidden {
    display: none;
}

.results-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    color: var(--form-text-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.average-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.price-label {
    font-size: 1.1rem;
    color: var(--form-text-color);
    font-weight: 600;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--form-secondary-color);
}

.calculation-breakdown {
    margin-top: 1rem;
}

/* Result Items - Accordion Style */
.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.result-item-main {
    background: linear-gradient(135deg, rgba(149, 193, 31, 0.2) 0%, rgba(149, 193, 31, 0.1) 100%);
    font-weight: 600;
    font-size: 1.05rem;
    border: 1px solid rgba(149, 193, 31, 0.3);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    user-select: none;
}

.result-item-main:hover {
    background: linear-gradient(135deg, rgba(149, 193, 31, 0.3) 0%, rgba(149, 193, 31, 0.15) 100%);
    border-color: var(--form-secondary-color);
    box-shadow: 0 4px 10px rgba(149, 193, 31, 0.2);
    transform: translateX(4px);
}

.result-item-main.expanded {
    background: linear-gradient(135deg, rgba(149, 193, 31, 0.25) 0%, rgba(149, 193, 31, 0.12) 100%);
    border-color: var(--form-secondary-color);
    margin-bottom: 0.3rem;
}

.result-item-sub {
    background: rgba(255, 255, 255, 0.05);
    margin-left: 2rem;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-item-sub:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(149, 193, 31, 0.3);
    transform: translateX(4px);
}

.result-item-sub:last-of-type {
    margin-bottom: 0.8rem;
}

.result-label {
    color: var(--form-text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.result-item-main .result-label {
    font-weight: 600;
}

.result-label .expand-icon {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    color: var(--form-secondary-color);
}

.result-label .country-name {
    flex: 1;
}

.result-value {
    color: var(--form-secondary-color);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.result-item-main .result-value {
    font-size: 1.2rem;
}

/* Legacy breakdown styles for compatibility */
.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-label {
    color: var(--form-text-color);
    font-weight: 500;
}

.breakdown-value {
    color: var(--form-secondary-color);
    font-weight: 600;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 29, 29, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.hidden {
    display: none;
}

.loading-spinner {
    text-align: center;
    color: var(--form-text-color);
}

.loading-spinner i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--form-secondary-color);
}

/* Percentage Total Indicator */
.percentage-total {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--form-text-color);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.percentage-total.valid {
    color: var(--form-secondary-color);
}

.percentage-total.invalid {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 900px) {
    .step-number {
        width: 30px;
        height: 30px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .countries-section {
        grid-template-columns: 1fr;
    }
    
    .countries-grid {
        height: 400px;
        overflow-y: auto;
        grid-template-columns: 1fr;
    }
    
    .operators-grid {
        grid-template-columns: 1fr;
        height: 400px;
        overflow-y: auto;
    }
    
    .ac-dc-section {
        grid-template-columns: 1fr;
    }
    
    .step-content {
        padding-left: 0rem;
    }
    
    .tariff-calculator {
        padding: 1rem;
    }
    
    .countries-title-container,
    .operators-title-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .countries-title-container .filter-container,
    .operators-title-container .filter-container {
        min-width: auto;
        width: 100%;
    }

    .step-number {
        width: 25px;
        height: 25px;
        flex-shrink: 0;
    }

    .price-value {
        white-space: nowrap;
    }

    .selected-countries-label {
        display: none;
    }

    .selected-operators-label {
        display: none;
    }

    .step-description {
        padding-left: 0.2rem;
    }

    .filter-container {
        margin-bottom: 0.75rem;
    }
    
    .filter-input-wrapper {
        padding: 0.4rem;
    }
    
    .filter-input {
        font-size: 0.9rem;
    }
    
    .selected-countries-container {
        margin: 0.75rem 0;
        min-height: 50px;
    }
    
    .selected-countries-scroll {
        gap: 0.5rem;
    }
    
    .selected-country-chip {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .selected-countries-label {
        font-size: 0.85rem;
        margin-right: 0.75rem;
    }
}

/* Filter Styles */
.filter-container {
    margin-bottom: 1rem;
}

.filter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.filter-input-wrapper:focus-within {
    border-color: var(--form-secondary-color);
    box-shadow: 0 0 0 2px rgba(147, 192, 29, 0.2);
}

.filter-icon {
    color: #999999;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.filter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--form-text-color);
    font-size: 0.95rem;
    padding: 0.25rem 0;
    outline: none;
    font-family: 'Roboto Condensed', sans-serif;
}

.filter-input::placeholder {
    color: #999999;
    opacity: 0.8;
}

.filter-clear-btn {
    background: none;
    border: none;
    color: var(--form-text-muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.filter-clear-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--form-text-color);
}

.filter-clear-btn i {
    font-size: 0.8rem;
}

/* Filtered item styles */
.country-item.filtered-out,
.operator-item.filtered-out {
    display: none;
}

.country-item.filtered-in,
.operator-item.filtered-in {
    display: flex;
    animation: fadeIn 0.3s ease;
}

/* No results message */
.no-results {
    text-align: center;
    color: var(--form-text-muted);
    padding: 2rem;
    font-style: italic;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 1rem 0;
}

.no-results i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.no-results p {
    margin: 0;
    font-size: 0.95rem;
}

/* Selected Countries Container */
.selected-countries-container {
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 60px;
    display: flex;
    align-items: center;
}

.selected-countries-container:empty,
.selected-countries-container.hidden {
    display: none;
}

.selected-countries-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--form-secondary-color) transparent;
}

.selected-countries-scroll::-webkit-scrollbar {
    height: 6px;
}

.selected-countries-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.selected-countries-scroll::-webkit-scrollbar-thumb {
    background: var(--form-secondary-color);
    border-radius: 3px;
}

.selected-country-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(147, 192, 29, 0.2);
    border: 1px solid var(--form-secondary-color);
    border-radius: 20px;
    padding: 0.5rem 0.75rem;
    color: var(--form-text-color);
    font-size: 0.9rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: fit-content;
}

.selected-country-chip:hover {
    background: rgba(147, 192, 29, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-color: var(--form-secondary-color);
}

.selected-country-chip .country-name {
    font-weight: 500;
}

.selected-country-chip .country-code {
    color: var(--form-text-muted);
    font-size: 0.8rem;
}

.selected-country-chip .remove-btn {
    background: none;
    border: none;
    color: var(--form-text-muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: all 0.2s ease;
}

.selected-country-chip .remove-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--form-text-color);
}

.selected-country-chip .remove-btn i {
    font-size: 0.7rem;
}

.selected-countries-label {
    color: var(--form-text-muted);
    font-size: 0.9rem;
    margin-right: 1rem;
    white-space: nowrap;
}

.selected-operators-container {
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 60px;
    display: flex;
    align-items: center;
}

.selected-operators-container:empty,
.selected-operators-container.hidden {
    display: none;
}

.selected-operators-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--form-secondary-color) transparent;
}

.selected-operators-scroll::-webkit-scrollbar {
    height: 6px;
}

.selected-operators-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.selected-operators-scroll::-webkit-scrollbar-thumb {
    background: var(--form-secondary-color);
    border-radius: 3px;
}

.selected-operator-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(147, 192, 29, 0.2);
    border: 1px solid var(--form-secondary-color);
    border-radius: 20px;
    padding: 0.5rem 0.75rem;
    color: var(--form-text-color);
    font-size: 0.9rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: fit-content;
}

.selected-operator-chip:hover {
    background: rgba(147, 192, 29, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-color: var(--form-secondary-color);
}

.selected-operator-chip .operator-name {
    font-weight: 500;
}

.selected-operator-chip .remove-btn {
    background: none;
    border: none;
    color: var(--form-text-muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: all 0.2s ease;
}

.selected-operator-chip .remove-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--form-text-color);
}

.selected-operator-chip .remove-btn i {
    font-size: 0.7rem;
}

.selected-operators-label {
    color: var(--form-text-muted);
    font-size: 0.9rem;
    margin-right: 1rem;
    white-space: nowrap;
}

/* Highlight effect for chip click feedback */
.highlight-temp {
    background: rgba(147, 192, 29, 0.4) !important;
    border: 2px solid var(--form-secondary-color) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 10px rgba(147, 192, 29, 0.5) !important;
}

/* Language Switcher Styles */
.language-switcher-container {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--form-text-color);
}

.language-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--form-text-color);
    margin: 0;
    white-space: nowrap;
}

.language-select {
    background-color: var(--form-background-color);
    border: 1px solid var(--form-border-color);
    border-radius: 4px;
    color: var(--form-text-color);
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    min-width: 80px;
}

.language-select:focus {
    outline: none;
    border-color: var(--form-secondary-color);
    box-shadow: 0 0 0 2px rgba(147, 192, 29, 0.2);
}

.language-select option {
    background-color: var(--form-background-color);
    color: var(--form-text-color);
}

/* Responsive adjustments for language switcher */
@media (max-width: 768px) {
    .language-switcher-container {
        gap: 0.25rem;
    }
    
    .language-label {
        font-size: 0.8rem;
    }
    
    .language-select {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .language-label {
        display: none; /* Hide label on very small screens */
    }
}

/* Custom Alert/Notification Modal Styles */
.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-alert-overlay.show {
    opacity: 1;
}

.custom-alert-modal {
    background: var(--form-background-color);
    border-radius: 15px;
    box-shadow: rgba(147, 192, 29, 0.2) 0px 10px 50px 0px;
    border: 1px solid var(--form-secondary-color);
    max-width: 500px;
    width: 90%;
    max-height: 70vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(-20px);
    transition: transform 0.3s ease;
    position: relative;
}

.custom-alert-overlay.show .custom-alert-modal {
    transform: scale(1) translateY(0);
}

.custom-alert-header {
    padding: 1.5rem 1.5rem 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.custom-alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.custom-alert-icon.error {
    color: #ef4444;
}

.custom-alert-icon.success {
    color: var(--form-success-color);
}

.custom-alert-icon.warning {
    color: #f59e0b;
}

.custom-alert-icon.info {
    color: #3b82f6;
}

.custom-alert-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--form-text-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-alert-body {
    padding: 1rem 1.5rem;
}

.custom-alert-message {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--form-text-color);
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.custom-alert-actions {
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.custom-alert-btn {
    font-family: 'Roboto Condensed', sans-serif;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 80px;
}

.custom-alert-btn.primary {
    background-color: var(--form-secondary-color);
    color: var(--form-btn-text-color);
}

.custom-alert-btn.primary:hover {
    background-color: #7ba51a;
    transform: translateY(-1px);
}

.custom-alert-btn.secondary {
    background-color: transparent;
    color: var(--form-text-color);
    border: 1px solid var(--form-border-color);
}

.custom-alert-btn.secondary:hover {
    background-color: var(--form-border-color);
    color: var(--form-btn-text-color);
}

.custom-alert-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--form-text-color);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.custom-alert-close:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Custom Toast Notification Styles */
.custom-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.custom-toast {
    background: var(--form-background-color);
    border-radius: 8px;
    border: 1px solid var(--form-secondary-color);
    box-shadow: rgba(147, 192, 29, 0.2) 0px 4px 20px 0px;
    padding: 1rem 1.25rem;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    pointer-events: auto;
    position: relative;
}

.custom-toast.show {
    transform: translateX(0);
}

.custom-toast-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.custom-toast-icon.error {
    color: #ef4444;
}

.custom-toast-icon.success {
    color: var(--form-success-color);
}

.custom-toast-icon.warning {
    color: #f59e0b;
}

.custom-toast-icon.info {
    color: #3b82f6;
}

.custom-toast-message {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.95rem;
    color: var(--form-text-color);
    line-height: 1.4;
    flex: 1;
}

.custom-toast-close {
    background: none;
    border: none;
    color: var(--form-text-color);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    opacity: 0.7;
    flex-shrink: 0;
}

.custom-toast-close:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Progress bar for auto-dismiss */
.custom-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: var(--form-secondary-color);
    border-radius: 0 0 8px 8px;
    transition: width linear;
}

/* Mobile responsiveness for custom alerts */
@media (max-width: 768px) {
    .custom-alert-modal {
        width: 95%;
        margin: 1rem;
        max-height: 80vh;
    }
    
    .custom-alert-header,
    .custom-alert-body,
    .custom-alert-actions {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .custom-alert-actions {
        flex-direction: column;
    }
    
    .custom-alert-btn {
        width: 100%;
    }
    
    .custom-toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .custom-toast {
        max-width: none;
    }
}