.form-refresh {
    --fr-bg: #f4f7fb;
    --fr-card: #ffffff;
    --fr-text: #1f2d3d;
    --fr-muted: #6b7785;
    --fr-border: #d9e3ee;
    --fr-brand-navy: #2f4368;
    --fr-brand-teal: #11b7be;
    --fr-primary: var(--fr-brand-navy);
    --fr-primary-dark: var(--fr-brand-teal);
    --fr-accent: #f59e0b;
    --fr-danger: #d14343;
    --fr-shadow: 0 10px 28px rgba(20, 39, 64, 0.08);
    font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
}

.form-refresh .container,
.form-refresh .container-fluid {
    background: linear-gradient(180deg, #f8fbff 0%, var(--fr-bg) 100%);
    border-radius: 16px;
    padding-top: 12px;
    padding-bottom: 18px;
}

.form-refresh .title-5 {
    color: var(--fr-text);
    letter-spacing: 0.3px;
}

.form-refresh .card {
    border: 1px solid var(--fr-border);
    border-radius: 14px;
    box-shadow: var(--fr-shadow);
    overflow: hidden;
}

.form-refresh .card-header {
    border: 0;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    background: linear-gradient(110deg, var(--fr-primary) 0%, var(--fr-primary-dark) 100%);
}

.form-refresh .card-header small {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
    text-transform: none;
}

.form-refresh .card-header h1,
.form-refresh .card-header h2,
.form-refresh .card-header h3,
.form-refresh .card-header h4,
.form-refresh .card-header h5,
.form-refresh .card-header h6 {
    color: #ffffff;
    line-height: 1.25;
}

.form-refresh .card-header .text-warning {
    color: #ffd166 !important;
}

.form-refresh .card-header h2 {
    font-size: 1.25rem;
}

.form-refresh .os-meta-title {
    font-size: clamp(1rem, 2.1vw, 1.6rem);
    font-weight: 700;
}

.form-refresh .card-body {
    background: var(--fr-card);
}

.form-refresh .input-group-addon,
.form-refresh label.form-control-label {
    color: #334155;
    font-weight: 600;
}

.form-refresh .form-control,
.form-refresh .form-control-sm,
.form-refresh .form-control-lg,
.form-refresh .select2-container--default .select2-selection--single,
.form-refresh .select2-container--default .select2-selection--multiple {
    border: 1px solid #c8d5e2;
    border-radius: 10px;
    min-height: 38px;
    box-shadow: none;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.form-refresh .form-control:focus,
.form-refresh .form-control-sm:focus,
.form-refresh .form-control-lg:focus,
.form-refresh .select2-container--default.select2-container--focus .select2-selection--single,
.form-refresh .select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--fr-brand-teal);
    box-shadow: 0 0 0 3px rgba(17, 183, 190, 0.18);
}

.form-refresh .table {
    background: #fff;
    border-radius: 10px;
}

.form-refresh .table thead th,
.form-refresh .table thead td {
    color: #27374a;
}

.form-refresh .btn {
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: transform .12s ease, box-shadow .2s ease;
}

.form-refresh .btn:hover {
    transform: translateY(-1px);
}

.form-refresh .btn-success {
    background: linear-gradient(110deg, var(--fr-brand-navy) 0%, var(--fr-brand-teal) 100%);
    border-color: var(--fr-brand-teal);
    box-shadow: 0 8px 18px rgba(17, 183, 190, 0.25);
}

.form-refresh .btn-danger {
    background: linear-gradient(110deg, #db4d4d 0%, var(--fr-danger) 100%);
    border-color: var(--fr-danger);
}

.form-refresh .btn-warning {
    color: #1f2937;
    background: linear-gradient(110deg, #f6b93b 0%, var(--fr-accent) 100%);
    border-color: var(--fr-accent);
}

.form-refresh .btn-dark {
    background: linear-gradient(110deg, #2d3e52 0%, #243446 100%);
    border-color: #243446;
}

.form-refresh .btn-form-action {
    min-width: 240px;
    justify-content: center;
}

.form-refresh .form-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .form-refresh .container,
    .form-refresh .container-fluid {
        border-radius: 12px;
        padding-left: 10px;
        padding-right: 10px;
    }
}
