.consent-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

.consent-modal-content {
    padding: 1.5rem;
    position: relative;
}

.consent-modal h2 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.consent-modal p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #666;
}

.consent-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn {
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 0.95rem;
}

.btn-accept {
    background-color: #10B981;
    color: white;
}

.btn-accept:hover {
    background-color: #059669;
}

.btn-reject {
    background-color: white;
    color: #1a1a1a;
    border: 1px solid #e5e7eb;
}

.btn-view {
    background-color: white;
    color: #1a1a1a;
    border: 1px solid #e5e7eb;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-out {
    animation: slideOut 0.3s ease-out forwards;
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .consent-modal {
        width: calc(100% - 40px);
        bottom: 10px;
        right: 20px;
    }

    .consent-modal-content {
        padding: 1.2rem;
    }
}

.consent-modal:focus {
    outline: none;
}

.btn:focus {
    outline: 2px solid #10B981;
    outline-offset: 2px;
} 