:root {
    --app-radius: 16px;
    --app-bg: #f5f6fa;
}

body {
    background-color: var(--app-bg);
    color: #1f2937;
}

.login-body {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
}

.login-card,
.card {
    border: 0;
    border-radius: var(--app-radius);
}

.card-hover:hover {
    transform: translateY(-2px);
    transition: 0.2s ease-in-out;
}

.btn,
.form-control,
.form-select,
.input-group-text {
    border-radius: 12px;
}

.btn-touch {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.table {
    background-color: #fff;
}

.badge {
    border-radius: 9px;
}

.search-result-item {
    cursor: pointer;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px;
    background: #fff;
    transition: 0.15s ease-in-out;
}

.search-result-item:hover {
    background: #f8fafc;
    border-color: #0d6efd;
}

.mobile-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    padding: 12px;
    margin-bottom: 10px;
}

.mobile-label {
    font-size: 0.78rem;
    color: #6b7280;
    margin-bottom: 2px;
}

.mobile-value {
    font-weight: 600;
}

.total-sticky {
    position: sticky;
    top: 72px;
    z-index: 10;
}

.catalog-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.product-card-title {
    font-size: 0.98rem;
    font-weight: 700;
}

.text-money {
    font-weight: 700;
    color: #0f766e;
}

.route-map {
    min-height: 420px;
    border-radius: var(--app-radius);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.leaflet-container {
    border-radius: var(--app-radius);
}
