/* ========================================
   Track Admin - Based on Ant Design
   ======================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.85);
    background: #f0f2f5;
}

/* ========================================
   Layout - Sider
   ======================================== */
.ant-layout {
    display: flex;
    flex-direction: row;
}

.ant-layout-sider {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background: #001529;
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow: hidden;
}

.logo {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo i {
    font-size: 24px;
    margin-right: 10px;
}

/* Menu */
.ant-menu-dark {
    background: #001529;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.ant-menu-dark .ant-menu-item {
    margin: 4px 8px;
    padding: 0 !important;
    height: 40px;
    line-height: 40px;
    border-radius: 6px;
    color: rgba(255,255,255,0.65);
    list-style: none;
}

.ant-menu-dark .ant-menu-item a {
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.ant-menu-dark .ant-menu-item .anticon {
    font-size: 16px;
    margin-right: 10px;
}

.ant-menu-dark .ant-menu-item:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.ant-menu-dark .ant-menu-item-selected {
    background: #1890ff !important;
    color: #fff;
}

/* Sider Footer */
.sider-footer {
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.user-info {
    display: flex;
    align-items: center;
    padding: 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    margin-bottom: 12px;
}

.user-info > i {
    font-size: 32px;
    color: rgba(255,255,255,0.65);
    margin-right: 12px;
}

.user-detail {
    flex: 1;
}

.user-name {
    color: #fff;
    font-weight: 500;
}

.user-role {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
}

.logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65) !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    background: rgba(255,255,255,0.05) !important;
    height: 36px;
    border-radius: 6px;
    text-decoration: none;
}

.logout-btn:hover {
    color: #fff !important;
    border-color: rgba(255,255,255,0.4) !important;
    background: rgba(255,255,255,0.1) !important;
}

/* ========================================
   Layout - Content
   ======================================== */
.ant-layout-sider + .ant-layout {
    margin-left: 200px;
    flex-direction: column;
    min-height: 100vh;
}

.ant-layout-header {
    background: #fff;
    padding: 16px 24px;
    min-height: 64px;
    height: auto;
    line-height: normal;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0,21,41,0.08);
    position: sticky;
    top: 0;
    z-index: 10;
}

.page-title {
    font-size: 18px;
    font-weight: 600;
    color: rgba(0,0,0,0.85);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.ant-layout-content {
    padding: 24px;
    flex: 1;
}

/* ========================================
   Cards
   ======================================== */
.ant-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 1px 6px -1px rgba(0,0,0,0.02), 0 2px 4px rgba(0,0,0,0.02);
    margin-bottom: 24px;
}

.ant-card-head {
    padding: 0 24px;
    border-bottom: 1px solid #f0f0f0;
    min-height: 56px;
    display: flex;
    align-items: center;
}

.ant-card-head-title {
    font-weight: 600;
    font-size: 16px;
    color: rgba(0,0,0,0.85);
}

.ant-card-body {
    padding: 24px;
}

/* ========================================
   Tables
   ======================================== */
.ant-table-wrapper {
    overflow-x: auto;
}

.ant-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.ant-table-thead > tr > th {
    background: #fafafa;
    padding: 16px;
    font-weight: 600;
    color: rgba(0,0,0,0.85);
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
}

.ant-table-tbody > tr > td {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    color: rgba(0,0,0,0.85);
}

.ant-table-tbody > tr:hover > td {
    background: #fafafa;
}

/* ========================================
   Forms
   ======================================== */
.ant-form-item {
    margin-bottom: 24px;
}

.ant-form-item-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    text-align: left;
}

.ant-form-item-label > label {
    color: rgba(0,0,0,0.85);
}

.ant-form-item-required::before {
    content: '*';
    color: #ff4d4f;
    margin-right: 4px;
}

.ant-input {
    width: 100%;
    height: 40px;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    transition: all 0.3s;
    background: #fff;
    outline: none;
}

.ant-input:hover {
    border-color: #40a9ff;
}

.ant-input:focus {
    border-color: #40a9ff;
    box-shadow: 0 0 0 2px rgba(24,144,255,0.2);
}

.ant-input:disabled,
.ant-input[disabled] {
    background: #f5f5f5;
    border-color: #d9d9d9;
    color: rgba(0,0,0,0.45);
    cursor: not-allowed;
}

.ant-input:disabled:hover,
.ant-input[disabled]:hover {
    border-color: #d9d9d9;
}

.ant-input-lg {
    height: 48px;
    padding: 12px 16px;
    font-size: 16px;
}

textarea.ant-input {
    height: auto;
    min-height: 100px;
    resize: vertical;
}

.ant-input-group {
    display: flex;
}

.ant-input-group-addon {
    background: #fafafa;
    border: 1px solid #d9d9d9;
    padding: 0 12px;
    display: flex;
    align-items: center;
    color: rgba(0,0,0,0.65);
    white-space: nowrap;
}

.ant-input-group-addon:first-child {
    border-right: none;
    border-radius: 6px 0 0 6px;
}

.ant-input-group-addon:last-child {
    border-left: none;
    border-radius: 0 6px 6px 0;
}

.ant-input-group .ant-input {
    border-radius: 0;
    flex: 1;
}

.ant-form-item-explain {
    color: rgba(0,0,0,0.45);
    font-size: 12px;
    margin-top: 4px;
}

/* Form Row */
.ant-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.ant-col {
    padding: 0 12px;
}

.ant-col-12 {
    width: 50%;
}

.ant-col-24 {
    width: 100%;
}

/* ========================================
   Buttons
   ======================================== */
.ant-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #d9d9d9;
    background: #fff;
    color: rgba(0,0,0,0.85);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    gap: 8px;
    white-space: nowrap;
}

.ant-btn:hover {
    color: #40a9ff;
    border-color: #40a9ff;
}

.ant-btn-primary {
    background: #1890ff;
    border-color: #1890ff;
    color: #fff;
}

.ant-btn-primary:hover {
    background: #40a9ff;
    border-color: #40a9ff;
    color: #fff;
}

.ant-btn-danger {
    color: #ff4d4f;
    border-color: #ff4d4f;
}

.ant-btn-danger:hover {
    color: #ff7875;
    border-color: #ff7875;
}

.ant-btn-success {
    color: #52c41a;
    border-color: #52c41a;
}

.ant-btn-success:hover {
    color: #73d13d;
    border-color: #73d13d;
}

.ant-btn-link {
    border: none;
    background: transparent;
    color: #1890ff;
    padding: 0;
    height: auto;
}

.ant-btn-link:hover {
    color: #40a9ff;
    border: none;
}

.ant-btn-sm {
    height: 32px;
    padding: 4px 12px;
    font-size: 14px;
}

.ant-btn-lg {
    height: 48px;
    padding: 12px 24px;
    font-size: 16px;
}

.ant-btn-block {
    width: 100%;
}

.ant-btn-group,
.ant-space {
    display: inline-flex;
    gap: 8px;
}

/* ========================================
   Tags
   ======================================== */
.ant-tag {
    display: inline-block;
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 4px;
    line-height: 20px;
}

.ant-tag-default {
    background: #fafafa;
    border: 1px solid #d9d9d9;
    color: rgba(0,0,0,0.65);
}

.ant-tag-success {
    background: #f6ffed;
    border: 1px solid #b7eb8f;
    color: #52c41a;
}

.ant-tag-warning {
    background: #fffbe6;
    border: 1px solid #ffe58f;
    color: #faad14;
}

.ant-tag-error {
    background: #fff2f0;
    border: 1px solid #ffccc7;
    color: #ff4d4f;
}

.ant-tag-processing {
    background: #e6f7ff;
    border: 1px solid #91d5ff;
    color: #1890ff;
}

/* ========================================
   Filter Tabs
   ======================================== */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 0;
}

.filter-label {
    color: rgba(0,0,0,0.65);
    font-weight: 500;
}

.filter-tabs {
    display: flex;
    gap: 0;
}

.filter-tab {
    padding: 8px 16px;
    color: rgba(0,0,0,0.65);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #d9d9d9;
    background: #fff;
    margin-left: -1px;
}

.filter-tab:first-child {
    border-radius: 6px 0 0 6px;
    margin-left: 0;
}

.filter-tab:last-child {
    border-radius: 0 6px 6px 0;
}

.filter-tab:hover {
    color: #1890ff;
    border-color: #1890ff;
    z-index: 1;
}

.filter-tab.active {
    background: #1890ff;
    border-color: #1890ff;
    color: #fff;
    z-index: 1;
}

/* ========================================
   Statistics Cards
   ======================================== */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.stat-card {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 1px 6px -1px rgba(0,0,0,0.02);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-icon.blue {
    background: #e6f7ff;
    color: #1890ff;
}

.stat-icon.orange {
    background: #fff7e6;
    color: #fa8c16;
}

.stat-icon.green {
    background: #f6ffed;
    color: #52c41a;
}

.stat-icon.purple {
    background: #f9f0ff;
    color: #722ed1;
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 28px;
    font-weight: 600;
    color: rgba(0,0,0,0.85);
    line-height: 1.2;
}

.stat-label {
    color: rgba(0,0,0,0.45);
    font-size: 14px;
    margin-top: 4px;
}

/* ========================================
   Quick Actions
   ======================================== */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.quick-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    background: #fafafa;
    border-radius: 8px;
    text-decoration: none;
    color: rgba(0,0,0,0.85);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.quick-action-item:hover {
    background: #e6f7ff;
    border-color: #91d5ff;
    color: #1890ff;
}

.quick-action-item i {
    font-size: 28px;
    margin-bottom: 12px;
    color: #1890ff;
}

.quick-action-item span {
    font-size: 14px;
}

/* ========================================
   Empty State
   ======================================== */
.ant-empty {
    text-align: center;
    padding: 48px 24px;
}

.ant-empty-image {
    font-size: 64px;
    color: #d9d9d9;
    margin-bottom: 16px;
}

.ant-empty-description {
    color: rgba(0,0,0,0.45);
}

/* ========================================
   Modal
   ======================================== */
.ant-modal-root {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.ant-modal-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.45);
}

.ant-modal-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ant-modal {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08), 0 3px 6px -4px rgba(0,0,0,0.12), 0 9px 28px 8px rgba(0,0,0,0.05);
}

.ant-modal-header {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.ant-modal-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(0,0,0,0.85);
}

.ant-modal-body {
    padding: 24px;
}

.ant-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #f0f0f0;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.ant-modal-confirm-body {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.confirm-icon {
    font-size: 22px;
    color: #faad14;
    margin-right: 16px;
}

.ant-modal-confirm-title {
    font-weight: 600;
    font-size: 16px;
    color: rgba(0,0,0,0.85);
}

.ant-modal-confirm-content {
    width: 100%;
    margin-top: 8px;
    margin-left: 38px;
    color: rgba(0,0,0,0.65);
}

.ant-modal-confirm-btns {
    width: 100%;
    margin-top: 24px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* ========================================
   Message / Toast
   ======================================== */
#message-container {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.ant-message-notice {
    padding: 10px 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08), 0 3px 6px -4px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: messageIn 0.3s ease;
    pointer-events: auto;
}

.ant-message-notice.closing {
    animation: messageOut 0.3s ease forwards;
}

.ant-message-notice i {
    font-size: 16px;
}

.ant-message-success i { color: #52c41a; }
.ant-message-error i { color: #ff4d4f; }
.ant-message-warning i { color: #faad14; }
.ant-message-info i { color: #1890ff; }

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes messageOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* ========================================
   Auth Pages
   ======================================== */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
    padding: 24px;
}

.auth-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 420px;
    padding: 48px 40px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo i {
    font-size: 48px;
    color: #1890ff;
}

.auth-logo h1 {
    font-size: 24px;
    font-weight: 600;
    color: rgba(0,0,0,0.85);
    margin: 16px 0 8px;
}

.auth-logo p {
    color: rgba(0,0,0,0.45);
    font-size: 14px;
}

.auth-form .ant-form-item {
    margin-bottom: 24px;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.auth-footer p {
    color: rgba(0,0,0,0.45);
    margin-bottom: 12px;
}

/* ========================================
   Alert
   ======================================== */
.ant-alert {
    padding: 12px 16px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.ant-alert-icon {
    font-size: 16px;
    line-height: 24px;
}

.ant-alert-content {
    flex: 1;
    line-height: 24px;
}

.ant-alert-info {
    background: #e6f7ff;
    border: 1px solid #91d5ff;
}

.ant-alert-info .ant-alert-icon {
    color: #1890ff;
}

.ant-alert-success {
    background: #f6ffed;
    border: 1px solid #b7eb8f;
}

.ant-alert-success .ant-alert-icon {
    color: #52c41a;
}

.ant-alert-warning {
    background: #fffbe6;
    border: 1px solid #ffe58f;
}

.ant-alert-warning .ant-alert-icon {
    color: #faad14;
}

.ant-alert-error {
    background: #fff2f0;
    border: 1px solid #ffccc7;
}

.ant-alert-error .ant-alert-icon {
    color: #ff4d4f;
}

/* ========================================
   Collapse / Accordion
   ======================================== */
.ant-collapse {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    overflow: hidden;
}

.ant-collapse-item {
    border-bottom: 1px solid #d9d9d9;
}

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

.ant-collapse-header {
    padding: 16px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: background 0.3s;
    background: #fafafa;
}

.ant-collapse-header:hover {
    background: #f0f0f0;
}

.ant-collapse-header i {
    margin-right: 12px;
    transition: transform 0.3s;
}

.ant-collapse-item.active .ant-collapse-header i.collapse-icon {
    transform: rotate(90deg);
}

.ant-collapse-content {
    display: none;
    padding: 16px 24px;
    background: #fff;
    border-top: 1px solid #d9d9d9;
}

.ant-collapse-item.active .ant-collapse-content {
    display: block;
}

/* ========================================
   Descriptions
   ======================================== */
.ant-descriptions {
    margin-bottom: 24px;
}

.ant-descriptions-item {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
}

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

.ant-descriptions-item-label {
    color: rgba(0,0,0,0.45);
    width: 120px;
    flex-shrink: 0;
}

.ant-descriptions-item-content {
    color: rgba(0,0,0,0.85);
    flex: 1;
}

/* ========================================
   Two Column Layout
   ======================================== */
.detail-layout {
    display: flex;
    gap: 24px;
}

.detail-main {
    flex: 1;
    min-width: 0;
}

.detail-side {
    width: 360px;
    flex-shrink: 0;
}

/* ========================================
   Breadcrumb
   ======================================== */
.ant-breadcrumb {
    font-size: 14px;
    margin-bottom: 16px;
}

.ant-breadcrumb a {
    color: rgba(0,0,0,0.45);
    text-decoration: none;
}

.ant-breadcrumb a:hover {
    color: #1890ff;
}

.ant-breadcrumb-separator {
    margin: 0 8px;
    color: rgba(0,0,0,0.45);
}

/* ========================================
   Divider
   ======================================== */
.ant-divider {
    border-top: 1px solid #f0f0f0;
    margin: 24px 0;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-muted {
    color: rgba(0,0,0,0.45);
}

.text-success {
    color: #52c41a;
}

.text-error {
    color: #ff4d4f;
}

.text-warning {
    color: #faad14;
}

.text-primary {
    color: #1890ff;
}

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

code {
    padding: 2px 8px;
    background: #f5f5f5;
    border-radius: 4px;
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-size: 13px;
    color: #d4380d;
}

.preview-image {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

/* ========================================
   Search Page
   ======================================== */
.search-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f0f2f5;
    padding: 40px 20px;
}

.search-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-header img {
    max-width: 180px;
    max-height: 60px;
    margin-bottom: 16px;
}

.search-header h1 {
    font-size: 28px;
    color: rgba(0,0,0,0.85);
    margin-bottom: 8px;
}

.search-box {
    width: 100%;
    max-width: 600px;
}

.search-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.search-input-group .ant-input {
    height: 48px;
    font-size: 16px;
    border-radius: 24px;
    padding: 0 20px;
}

.search-input-group .ant-btn {
    height: 48px;
    border-radius: 24px;
    padding: 0 32px;
}

/* Timeline */
.ant-timeline {
    padding-left: 4px;
}

.ant-timeline-item {
    position: relative;
    padding-bottom: 20px;
    padding-left: 24px;
}

.ant-timeline-item::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 10px;
    bottom: -10px;
    width: 2px;
    background: #f0f0f0;
}

.ant-timeline-item:last-child::before {
    display: none;
}

.ant-timeline-item-dot {
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1890ff;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #1890ff;
}

.ant-timeline-item:first-child .ant-timeline-item-dot {
    background: #52c41a;
    box-shadow: 0 0 0 2px #52c41a;
}

.ant-timeline-item-content {
    position: relative;
    top: -2px;
}

.timeline-time {
    color: rgba(0,0,0,0.45);
    font-size: 12px;
}

.timeline-desc {
    color: rgba(0,0,0,0.85);
    margin-top: 4px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1200px) {
    .detail-layout {
        flex-direction: column;
    }
    .detail-side {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ant-layout-sider {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .ant-layout-sider.open {
        transform: translateX(0);
    }

    .ant-layout-sider + .ant-layout {
        margin-left: 0;
    }

    .auth-card {
        padding: 32px 24px;
    }

    .ant-col-12 {
        width: 100%;
    }

    .ant-row {
        flex-direction: column;
    }

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