.terms-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    width: 90%;
    max-width: 500px;
}

.terms-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.terms-content {
    text-align: center;
}

.terms-buttons {
    margin-top: 20px;
}

.accept-btn, .reject-btn {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.accept-btn {
    background-color: #4CAF50;
    color: white;
}

.reject-btn {
    background-color: #f44336;
    color: white;
}

@media (max-width: 480px) {
    .terms-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .accept-btn, .reject-btn {
        width: 100%;
    }
}
