.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-cancel {
    padding: 0.75rem 2rem;
    border: 2px solid var(--lot-green);
    background-color: var(--white);
    color: var(--lot-green);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

.btn-cancel:hover {
    background-color: var(--lot-green);
    color: var(--white);
}

.btn-submit {
    padding: 0.75rem 2.5rem;
    background-color: var(--lot-orange) !important;
    color: var(--white) !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    background-color: var(--lot-green) !important;
    color: var(--white) !important;
}

.btn-submit:disabled {
    background-color: #ccc;
    color: #666;
    border-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.btn-submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
    }

    .btn-cancel,
    .btn-submit {
        width: 100%;
    }
}
