/* Forms (specialist, client, order) — BBC Admin Dark Theme */

/* Panel compat for ms-panel */
.ms-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.ms-panel-header { padding: 16px 20px; border-bottom: 1px solid var(--border); }
.ms-panel-header.ms-panel-custome { padding: 16px 20px; }
.ms-panel-header__box { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.ms-panel-header__title h6 { margin: 0; font-size: 0.95rem; color: var(--text); font-family: 'Montserrat', sans-serif; }
.ms-panel-header__title .head_span { color: var(--accent); }
.ms-panel-header__btn { display: flex; gap: 6px; }
.ms-panel-header a { font-size: 0.78rem; color: var(--cyan); }
.ms-panel-body { padding: 20px; }
.ms-text-primary { color: var(--cyan) !important; }

/* Form grid compat */
.form-row { display: flex; flex-wrap: wrap; margin: 0 -6px; }
.form-row > [class*="col-"] { padding: 0 6px; }
.col-md-2 { width: 16.66%; }
.col-md-3 { width: 25%; }
.col-md-4 { width: 33.33%; }
.col-md-5 { width: 41.66%; }
.col-md-6 { width: 50%; }
.col-md-8 { width: 66.66%; }
.col-md-10 { width: 83.33%; }
.col-md-12 { width: 100%; }
.col-xl-12 { width: 100%; }

/* Labels */
.zayavka label,
.ms-panel-body label,
.form-horizontal label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Inputs */
.zayavka .form-control,
.ms-panel-body .form-control,
.form-horizontal .form-control {
    width: 100%;
    padding: 8px 12px;
    font-size: 0.82rem;
    color: var(--text);
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 6px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s;
}
.zayavka .form-control:focus,
.ms-panel-body .form-control:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 2px rgba(0,255,255,0.1);
}

/* Selects */
.zayavka select.form-control,
.ms-panel-body select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a8a9e' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

/* Textarea */
.zayavka textarea.form-control,
.ms-panel-body textarea.form-control {
    min-height: 80px;
    resize: vertical;
}

/* Input group */
.input-group { display: flex; gap: 6px; align-items: center; margin-bottom: 0; }
.input-group .form-control { flex: 1; }

/* Buttons in form header */
.ms-panel-header .btn { font-size: 0.78rem; padding: 6px 14px; }

/* Images in specialist form */
.zayavka img { border-radius: 8px; max-width: 100%; }

/* Checkbox styling */
.zayavka input[type="checkbox"] {
    accent-color: var(--cyan);
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

/* File input */
.zayavka input[type="file"] {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .form-row > [class*="col-"] { width: 100%; }
    .ms-panel-header__box { flex-direction: column; align-items: flex-start; }
    .col-md-4, .col-md-6, .col-md-8 { width: 100%; }
}
