/* Cookie Consent Dialog Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-consent__container {
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.cookie-consent__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 40px 20px 20px;
    position: relative;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-consent__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.cookie-consent__close:hover {
    color: #000;
}

.cookie-consent__text {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    margin: 0;
}

.cookie-consent__link {
    color: #0066cc;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-consent__link:hover {
    color: #0052a3;
}

.cookie-consent__button {
    background: #ff6600;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
}

.cookie-consent__button:hover {
    background: #e55a00;
}

.cookie-consent__footer {
    height: 4px;
    background: #ff6600;
    width: 100%;
}

/* Responsive styles */
@media (max-width: 767px) {
    .cookie-consent__container {
        max-width: 100%;
    }

    .cookie-consent__content {
        padding: 15px 35px 15px 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent__text {
        min-width: 100%;
        margin-bottom: 10px;
    }

    .cookie-consent__button {
        width: 100%;
        min-width: auto;
    }

    .cookie-consent__close {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 575px) {
    .cookie-consent__content {
        padding: 15px 35px 15px 15px;
    }

    .cookie-consent__text {
        font-size: 13px;
    }

    .cookie-consent__button {
        padding: 10px 20px;
        font-size: 14px;
    }
}
