﻿.app-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.app-form-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.app-search {
    width: 320px;
    height: 40px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 14px;
}

    .app-search:focus {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37,99,235,.15);
    }

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.page-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}