.modal-content {
    background: #1a1a2e;
    border-radius: 10px;
    color: #fff;
    border: none;
}
.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-title {
    font-weight: 600;
}
.btn-close {
    filter: invert(1);
}
.form-grp {
    margin-bottom: 1.5rem;
}
.form-grp label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}
.form-grp input,
.form-grp textarea {
    background: #2a2a3e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
}
.form-grp input:focus,
.form-grp textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.btn {
    background: linear-gradient(90deg, #007bff, #00d4ff);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn:hover {
    background: linear-gradient(90deg, #0056b3, #0096cc);
}
.ajax-response {
    font-size: 0.9rem;
}