/* Modal Backdrop */
#vcc-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99998;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

/* Modal Content Box */
#vcc-modal-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 600px;
    z-index: 99999;
}

#vcc-modal-content h2 {
    margin-top: 0;
    color: #333;
}

#vcc-modal-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Service Categories */
.vcc-service-category {
    border-top: 1px solid #eee;
    padding: 15px 0;
}

.vcc-service-category label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
}

.vcc-service-category input[type="checkbox"] {
    margin-right: 10px;
    width: 1.3em;
    height: 1.3em;
}

.vcc-service-category p {
    font-size: 13px;
    color: #777;
    margin: 5px 0 0 0;
    padding-left: 28px; /* Aligns with text */
}

/* Button Container */
.vcc-modal-buttons {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.vcc-btn {
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
}

.vcc-btn:active {
    transform: scale(0.98);
}

.vcc-btn-primary {
    background: #0073e6; /* Example primary color */
    color: white;
}
.vcc-btn-primary:hover {
    background: #005bb5;
}

.vcc-btn-save {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
}
.vcc-btn-save:hover {
    background: #e0e0e0;
}

.vcc-btn-deny {
    background: #ddd;
    color: #444;
}
.vcc-btn-deny:hover {
    background: #ccc;
}

/* Responsive */
@media (max-width: 600px) {
    #vcc-modal-content {
        width: 95%;
        padding: 20px;
    }
    .vcc-modal-buttons {
        flex-direction: column;
    }
    .vcc-btn {
        width: 100%;
    }
}