* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Corporate color palette */
    --color-primary: #2196F3;
    --color-primary-light: #42A5F5;
    --color-primary-dark: #1976D2;
    --color-secondary: #757575;
    --color-accent: #000000;
    --color-background: #f5f5f5;
    --color-surface: #ffffff;
    --color-surface-hover: #fafafa;
    --color-surface-variant: #fafafa;
    --color-gray-50: #fafafa;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #eeeeee;
    --color-gray-300: #e0e0e0;
    --color-gray-400: #bdbdbd;
    --color-gray-500: #9e9e9e;
    --color-gray-600: #757575;
    --color-gray-700: #616161;
    --color-gray-800: #424242;
    --color-gray-900: #212121;
    --color-text: #212121;
    --color-text-secondary: #757575;
    --color-divider: rgba(0, 0, 0, 0.12);
    --color-error: #f44336;
    --color-success: #4CAF50;
    --color-warning: #ff9800;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 8px 0 rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 8px 16px 0 rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--color-background);
    min-height: 100vh;
    color: var(--color-text);
    font-size: 13px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.screen {
    display: none;
}

.screen.active {
    display: block;
}

/* Экран авторизации */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: var(--color-background);
}

.login-card {
    background: var(--color-surface);
    border-radius: 4px;
    padding: 32px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--color-gray-300);
}

/* remove decorative gradient border and hover */
.login-card::before { display: none; content: none; }
.login-card:hover { transform: none; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }

.login-card h1 {
    text-align: center;
    margin-bottom: 8px;
    color: var(--color-text);
    font-size: 20px;
    font-weight: 600;
}

.login-card .company-name {
    text-align: center;
    margin-bottom: 16px;
}

.login-card .company-name-main {
    color: var(--color-text);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.login-card .company-name-sub {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.login-card .subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    font-size: 13px;
    font-weight: 400;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: normal;
    text-transform: none;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--color-gray-300);
    border-radius: 4px;
    font-size: 13px;
    transition: border-color 0.2s;
    background: var(--color-surface);
    color: var(--color-text);
    font-family: inherit;
    box-shadow: none;
}

.form-group input:hover { border-color: var(--color-gray-400); }
.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: none;
    background: var(--color-surface);
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: color 0.2s;
    border-radius: 4px;
    font-size: 14px;
}

.toggle-password:hover { color: var(--color-text); transform: none; }

.error-message {
    background: rgba(244, 67, 54, 0.1);
    color: var(--color-error);
    padding: 10px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 12px;
    border: 1px solid rgba(244, 67, 54, 0.3);
    display: none;
    font-weight: 400;
}

.error-message.show {
    display: block;
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 4px;
    border: none;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s;
}

.btn:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }

.btn-primary { background: var(--color-primary); color: #fff; box-shadow: none; }
.btn-primary:hover:not(:disabled) { background: var(--color-primary-dark); transform: none; box-shadow: none; }

#loginBtn { width: 100%; margin-top: 12px; }

.btn-secondary {
    background: var(--color-surface);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-gray-300);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--color-gray-100);
}

.btn-icon {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: background 0.3s;
    font-size: 12px;
}

.btn-icon:hover {
    background: var(--color-gray-200);
}

/* Основной экран */
.header {
    background: var(--color-surface);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    padding: 0;
    border-bottom: 1px solid var(--color-divider);
}

.header-content {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    margin-top: env(safe-area-inset-top, 0);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-left i {
    color: var(--color-primary);
    font-size: 16px;
}

.header h1 {
    font-size: 16px;
    color: var(--color-text);
    font-weight: 600;
    margin: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info span {
    font-weight: 500;
    color: var(--color-text);
    font-size: 13px;
}

.main-content {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 12px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: minmax(250px, 320px) 1fr;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

/* Карточки */
.card {
    background: var(--color-surface);
    border-radius: 4px;
    border: 1px solid var(--color-gray-300);
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card-header {
    height: 40px;
    padding: 0 12px;
    background: var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-300);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.card-header-title i {
    font-size: 14px;
    color: var(--color-primary);
}

.card-content {
    padding: 12px;
}

/* Боковая панель */
.sidebar {
    width: 100%;
    max-width: 320px;
    min-width: 250px;
    background: var(--color-gray-100);
    border-radius: 4px;
    overflow: hidden;
    height: fit-content;
    position: sticky;
    top: 12px;
}

.sidebar-header {
    height: 36px;
    padding: 0 8px;
    display: flex;
    align-items: center;
}

.sidebar-header-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text);
}

.sidebar-header-title i {
    font-size: 12px;
    color: var(--color-text-secondary);
}

.sidebar-divider {
    height: 1px;
    background: var(--color-divider);
    margin: 0;
}

.employees-list {
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    padding: 4px;
}

.employees-list .employee-item:nth-child(odd):not(.active):not(.employee-skeleton):not(:hover) { 
    background: var(--color-gray-100); 
}

#homeItem { background: var(--color-gray-100); border-left: 3px solid #000; }
#homeItem.active { background: var(--color-gray-200); border-left: 4px solid #000; }

.employee-item {
    height: 56px;
    margin: 0;
    padding: 8px;
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid var(--color-divider);
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.employee-item:last-child {
    border-bottom: none;
}

.employee-item:hover {
    background: rgba(33, 150, 243, 0.08) !important;
}

.employee-item.active {
    background: rgba(0,0,0,0.08); border-left: 3px solid #000;
}

.employee-avatar {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.employee-avatar i {
    font-size: 14px;
    color: #000;
}

.employee-loading {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--color-text-secondary);
}

.employee-info {
    flex: 1;
    min-width: 0;
}

.employee-name {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.employee-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.employee-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
}

.employee-status i {
    font-size: 9px;
}

.employee-status.active {
    color: var(--color-success);
}

.employee-status.active i {
    color: var(--color-success);
}

.employee-status.inactive {
    color: var(--color-error);
}

.employee-status.inactive i {
    color: var(--color-error);
}

.employee-phone {
    font-size: 11px;
    color: var(--color-text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
}

/* Skeleton styles for loading state */
.employee-skeleton {
    opacity: 0.7;
    pointer-events: none;
    cursor: default;
}

.employee-skeleton:hover {
    background: transparent;
}

.skeleton-shimmer {
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.06) 0%, 
        rgba(0, 0, 0, 0.12) 50%, 
        rgba(0, 0, 0, 0.06) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.loading-small {
    text-align: center;
    color: var(--color-text-secondary);
    padding: 20px;
    font-size: 12px;
}

/* Основной контент */
.content-main {
    flex: 1;
    min-width: 0;
}

/* Панель фильтров */
.filters-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-group label {
    font-size: 12px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.filter-select,
.filter-input {
    padding: 10px 12px;
    border: 1px solid var(--color-gray-300);
    border-radius: 4px;
    font-size: 13px;
    min-width: 150px;
    background: var(--color-surface);
    color: var(--color-text);
    transition: border-color 0.2s;
    font-family: inherit;
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.filter-select option {
    background: var(--color-surface);
    color: var(--color-text);
}

/* Панель статистики */
.stats-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 0;
}

.stat-card {
    background: var(--color-gray-50);
    padding: 16px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid var(--color-gray-300);
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Skeleton shimmer for stats */
/* shimmer removed */

/* Таблица заказов */
.loading {
    padding: 40px;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 13px;
}

.spinner {
    border: 3px solid var(--color-gray-300);
    border-top: 3px solid var(--color-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

/* Скругляем углы у таблиц в админке */
.orders-table thead th:first-child {
    border-top-left-radius: 8px;
}

.orders-table thead th:last-child {
    border-top-right-radius: 8px;
}

.orders-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.orders-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

.orders-table thead {
    background: var(--color-gray-100);
}

.orders-table th {
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
    color: var(--color-text);
    font-size: 12px;
    border-bottom: 1px solid var(--color-divider);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.orders-table th:nth-child(1) { width: 8%; }  /* ID */
.orders-table th:nth-child(2) { width: 9%; }  /* Date / Time */
.orders-table th:nth-child(3) { width: 8%; }  /* Employee */
.orders-table th:nth-child(4) { width: 8%; }  /* Phone */
.orders-table th:nth-child(5) { width: 15%; } /* From */
.orders-table th:nth-child(6) { width: 15%; } /* To */
.orders-table th:nth-child(7) { width: 7%; }  /* Distance */
.orders-table th:nth-child(8) { width: 7%; }  /* Amount */
.orders-table th:nth-child(9) { width: 7%; }  /* Duration */
.orders-table th:nth-child(10) { width: 8%; } /* Status */
.orders-table th:nth-child(11) { width: 10%; } /* Additional info */
.orders-table th:nth-child(12) { width: 8%; }  /* Actions */

.orders-table td {
    padding: 12px 8px;
    border-bottom: 1px solid var(--color-divider);
    font-size: 13px;
    color: var(--color-text);
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.orders-table tbody tr {
    background: var(--color-surface);
    transition: background-color 0.2s;
}

.orders-table tbody tr:hover {
    background: var(--color-gray-50);
}

.orders-table tbody tr:nth-child(even) {
    background: var(--color-gray-50);
}

.orders-table tbody tr:nth-child(even):hover {
    background: var(--color-gray-100);
}

.orders-table .empty-message {
    text-align: center;
    padding: 40px;
    color: var(--color-text-secondary);
}

.orders-table .additional-info-cell {
    max-width: 100%;
    overflow: hidden;
}

.additional-info-text {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--color-text);
    word-break: break-word;
}

.orders-table td.order-actions {
    white-space: nowrap;
    overflow: visible;
    padding: 8px 4px;
    text-align: center;
}

.order-actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-compact {
    padding: 6px 8px;
    font-size: 11px;
    line-height: 1;
    min-height: 28px;
    min-width: 32px;
    gap: 0;
}

.btn-compact span {
    display: none;
}

.btn-compact i {
    font-size: 12px;
}

.text-muted {
    color: var(--color-text-secondary);
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-new { 
    background: rgba(33, 150, 243, 0.15);
    color: #2196F3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.status-accepted { 
    background: rgba(255, 152, 0, 0.15);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.status-inProgress { 
    background: rgba(156, 39, 176, 0.15);
    color: #9c27b0;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.status-completed { 
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-canceled { 
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Modals */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
}

.modal.open {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 520px;
    position: relative;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.35);
}

.modal-content.modal-wide {
    max-width: 720px;
}

.modal-title {
    margin: 0 0 16px;
    font-size: 20px;
    color: var(--color-text);
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-field label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.modal-field textarea {
    width: 100%;
    border: 1px solid var(--color-divider);
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    resize: vertical;
    min-height: 120px;
}

.modal-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.15);
}

.modal-order-id {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: transparent;
    color: var(--color-text-secondary);
    font-size: 18px;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--color-text);
}

.modal-message {
    font-size: 13px;
    color: var(--color-text-secondary);
    min-height: 18px;
}

.modal-message.success {
    color: #2e7d32;
}

.modal-message.error {
    color: #c62828;
}

.route-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
    font-size: 14px;
}

.meta-label {
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-right: 4px;
}

#routeMapWrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

#orderRouteMap {
    width: 100%;
    height: 360px;
}

@media (max-width: 640px) {
    .modal-content {
        padding: 20px;
    }

    .order-actions {
        flex-direction: column;
    }
}

/* Пагинация */
.pagination {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-divider);
    background: var(--color-gray-100);
}

#pageInfo {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
}

/* Скроллбар */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gray-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray-500);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        min-width: 100%;
        position: static;
    }
    
    .content-main {
        width: 100%;
    }

    .stats-panel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        height: auto;
        padding: 12px;
    }

    .header h1 {
        font-size: 14px;
    }

    .user-info {
        width: 100%;
        justify-content: space-between;
    }

    .main-content {
        padding: 8px;
    }

    .card {
        margin-bottom: 8px;
    }

    .card-content {
        padding: 8px;
    }

    .filters-panel {
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
    }

    .filter-select,
    .filter-input {
        width: 100%;
        min-width: 100%;
    }

    .orders-table {
        font-size: 12px;
    }

    .orders-table th,
    .orders-table td {
        padding: 8px;
    }

    .stats-panel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 24px;
    }

    .login-card h1 {
        font-size: 18px;
    }

    .header h1 {
        font-size: 14px;
    }

    .header-left i {
        font-size: 14px;
    }

    .stats-panel {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 20px;
    }

    .orders-table {
        display: block;
        overflow-x: auto;
    }

    .orders-table th,
    .orders-table td {
        padding: 8px;
        font-size: 11px;
    }

    .status-badge {
        padding: 3px 8px;
        font-size: 10px;
    }
}

.add-employee { padding: 8px; border-bottom: 1px solid var(--color-gray-200); }
.add-employee-card { margin: 8px; }
.add-employee-row { margin-bottom: 8px; }
.add-employee input, .add-employee-card input { width: 100%; padding: 8px 10px; border: 1px solid var(--color-gray-300); border-radius: 4px; font-size: 12px; }
.add-employee .btn-small, .add-employee-card .btn-small { width: 100%; min-height: 32px; font-size: 12px; }
.small-hint { margin-top: 6px; font-size: 11px; color: var(--color-text-secondary); }
.small-hint.error { color: var(--color-error); }
.small-hint.success { color: var(--color-success); }

/* Accent color adjustments to black */
:root {
    --color-accent: #000000;
}

/* Header brand */
.brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { width: 28px; height: 28px; object-fit: contain; display: block; }
.brand-text { line-height: 1; }
.brand-main { font-weight: 800; font-size: 16px; color: var(--color-text); letter-spacing: 0.2px; }
.brand-sub { font-weight: 300; font-size: 12px; color: var(--color-text); opacity: 0.85; }

/* Employee list accents switch to black */
.employee-item.active { background: rgba(0,0,0,0.08); border-left: 3px solid #000; }
.employee-avatar { background: rgba(0,0,0,0.18); }
.employee-avatar i { color: #000; }

/* Buttons already set to black earlier */
.btn { border-radius: 12px; }
.btn-primary { background: #000; color: #fff; }
.btn-primary:hover:not(:disabled) { background: #111; }
.btn-secondary { background: #fff; color: #000; border: 1px solid #000; }
.btn-secondary:hover:not(:disabled) { background: var(--color-gray-100); }
