#cabine-fotos-terms-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.cabine-fotos-terms-content {
    position: relative;
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cabine-fotos-terms-header {
    text-align: center;
    margin-bottom: 20px;
}

.cabine-fotos-terms-header img {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.cabine-fotos-terms-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.cabine-fotos-terms-body {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.cabine-fotos-terms-footer {
    text-align: center;
}

.cabine-fotos-terms-button {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cabine-fotos-terms-accept {
    background-color: #4CAF50;
    color: white;
}

.cabine-fotos-terms-accept:hover {
    background-color: #45a049;
}

.cabine-fotos-terms-decline {
    background-color: #f44336;
    color: white;
}

.cabine-fotos-terms-decline:hover {
    background-color: #da190b;
}

@media (max-width: 768px) {
    .cabine-fotos-terms-content {
        width: 95%;
        margin: 5% auto;
    }

    .cabine-fotos-terms-button {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
} 