/* Pastikan modal feedback tidak transparan */
.feedback-modal .modal-content {
    background-color: #fff !important;
    border-radius: 10px;
    padding: 20px;
    border: none;
}

/* Tombol close */
.feedback-modal .modal-close {
    background: none;
    border: none;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 15px;
    color: #333;
    cursor: pointer;
}

/* Judul & Subjudul */
.feedback-modal .modal-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.feedback-modal .modal-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Input & Tombol Form */
.feedback-modal form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.feedback-modal form button {
    width: 100%;
    padding: 10px;
    background-color: #e65c00;;
    border: none;
    color: white;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
}

.feedback-modal form button:hover {
    background-color: #0b5ed7;
}