.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748; /* zinc-800 equivalent */
    color: #fff;
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-consent .container {
    display: flex;
    flex-direction: column;
}

#cookie-main-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    margin-right: 1rem;
    min-width: 280px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    border: none;
    transition: all 0.2s ease;
}

.cookie-btn-primary {
    background-color: #3182ce; /* blue-500 */
    color: white;
}

.cookie-btn-primary:hover {
    background-color: #2c5282; /* blue-700 */
}

.cookie-btn-secondary {
    background-color: transparent;
    border: 1px solid #cbd5e0; /* gray-400 */
    color: #cbd5e0;
}

.cookie-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-link {
    background-color: transparent;
    color: #90cdf4; /* blue-300 */
    padding: 0.5rem;
}

.cookie-btn-link:hover {
    text-decoration: underline;
}

#cookie-preference-options {
    padding: 1rem 0;
}

#cookie-preference-options .form-check-input {
    border-color: #cbd5e0;
}

#cookie-preference-options .small {
    color: #cbd5e0;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    #cookie-main-options {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-consent-text {
        margin-right: 0;
        margin-bottom: 1rem;
    }
} 