/* Edit modal form styles */
.modal-body .form-group {
    margin-bottom: 1rem;
}

.modal-body .form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: #333;
}

.modal-body .form-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.modal-body textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.modal-body .form-input:focus {
    outline: none;
    border-color: #2E7D32;
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.1);
}

.modal-body .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.modal-body .btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.modal-body .btn-primary {
    background: #2E7D32;
    color: white;
}

.modal-body .btn-primary:hover {
    background: #1976D2;
}

.modal-body .btn-secondary {
    background: #f5f5f5;
    color: #333;
}

.modal-body .btn-secondary:hover {
    background: #e0e0e0;
}