/* Import shared base styles */
@import './cookies-consent-base.css';

/* Landing Page Specific Styles */
.cookies-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.cookies-consent-dialog {
    background: white;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    /* Base styles (border-radius, box-shadow, font-family) inherited from shared base */
}

.cookies-consent-header {
    border-radius: 12px 12px 0 0;
    /* Other header styles inherited from shared base */
}

.cookies-consent-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

/* Content styles inherited from shared base */

.cookies-consent-description {
    margin: 0 0 16px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.cookies-consent-list {
    color: #555;
}

.cookies-consent-policy {
    margin: 16px 0 0 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}



.cookies-consent-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    /* Padding inherited from shared base */
}

.cookies-consent-btn {
    cursor: pointer;
    border: none;
    min-width: 120px;
    /* Base button styles inherited from shared base */
}

/* Button styling inherited from shared base */

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookies-consent-overlay {
        padding: 10px;
    }
    
    .cookies-consent-dialog {
        max-width: 100%;
    }
    
    .cookies-consent-header {
        padding: 16px 20px;
    }
    
    .cookies-consent-content {
        padding: 20px;
    }
    
    .cookies-consent-actions {
        flex-direction: column;
        padding: 16px 20px 20px;
    }
    
    .cookies-consent-btn {
        width: 100%;
        margin: 4px 0;
    }
    
    .cookies-consent-title {
        font-size: 16px;
    }
    
    .cookies-consent-description {
        font-size: 15px;
    }
} 