/**
 * Cookie Banner Styles
 * Intentionally isolated from main styles to prevent conflicts
 */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 22, 50, 0.95);
    color: #fff;
    z-index: 10000;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    max-width: 100%;
    box-sizing: border-box;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    flex: 1 1 300px;
}

.cookie-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-policy-link {
    color: #FF1493;
    text-decoration: underline;
    font-size: 14px;
}

.cookie-policy-link:hover {
    text-decoration: none;
}

.cookie-accept {
    background-color: #FF1493;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-accept:hover {
    background-color: #C71585;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cookie-links {
        width: 100%;
        justify-content: flex-end;
    }
}