/* Cookie Consent Modal Styles */
#cookie-consent-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    font-family: 'Courier New', 'Consolas', monospace;
}

.cookie-consent-content {
    background-color: #ffffff;
    border: 2px solid #000000;
    padding: 20px;
    box-shadow: 4px 4px 0px #000000;
}

#cookie-consent-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #000000;
}

#cookie-consent-description {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    color: #000000;
}

.cookie-consent-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-btn {
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 14px;
    padding: 10px 15px;
    border: 2px solid #000000;
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    width: 100%;
}

.cookie-btn:hover,
.cookie-btn:focus {
    background-color: #000000;
    color: #ffffff;
    outline: 2px solid #000000;
    outline-offset: 2px;
}

.cookie-btn span {
    margin-right: 5px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #cookie-consent-modal {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .cookie-consent-content {
        padding: 15px;
    }
    
    #cookie-consent-title {
        font-size: 16px;
    }
    
    #cookie-consent-description {
        font-size: 13px;
    }
    
    .cookie-btn {
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .cookie-btn {
        transition: none;
    }
}
