/* Modern Form Container */
.form-container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 2rem auto;
}
/* Header Section */
.form-header {
    background-color: #192b80;
    padding: 1rem;
    border-radius: 10px 10px 0 0;
    text-align: center;
}
.form-header h3 {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
}
/* Form Body */
.form-body {
    padding: 1.5rem;
}
/* Form Group */
.form-group {
    margin-bottom: 1rem;
}
.form-group label.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: #1b1b42;
}
/* Inputs */
.form-control,
.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-control:focus,
.form-select:focus {
    border-color: #192b80;
    outline: none;
    box-shadow: none;
}
/* Buttons */
.btn-custom {
    background-color: #192b80;
    border: none;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-custom:hover {
    background-color: #1b1b42;
    color: white;
}
/* Toggle Buttons */
.toggle-btn {
    border: 1px solid #192b80;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    background-color: transparent;
    color: #192b80;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
.toggle-btn.active {
    background-color: #192b80;
    color: #fff;
}
/* Responsive adjustments */
@media (max-width: 576px) {
    .form-container {
        padding: 1rem;
    }
    .form-header h3 {
        font-size: 1.25rem;
    }
}
/* Partner form button adjustments */
#dronePartnerForm .btn-custom {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
}
#dronePartnerForm .btn-custom:hover {
    background-color: #1b1b42 !important;
    color: #f7f7f7 !important;
}
#dronePartnerForm .btn-secondary {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.85rem !important;
}