/* 统一样式文件 */
/* 包含所有页面的样式定义 */

/* ========================================= */
/* 全局样式 - 所有页面共用 */
/* ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #ffffff;
    color: #333;
    padding: 20px 0;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-bottom: 3px solid #1a73e8;
}

header h1 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* 导航栏样式 - 所有页面共用 */
.nav {
    background-color: #ffffff;
    padding: 15px 0;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-bottom: 1px solid #e9ecef;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav ul li {
    margin: 0;
}

.nav ul li a {
    color: #495057;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.nav ul li a:hover {
    background-color: #f1f3f4;
    color: #1a73e8;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* 消息提示样式 - 所有页面共用 */
.error {
    background-color: #fce4ec;
    color: #c62828;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #f44336;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(244, 67, 54, 0.1);
}

.success {
    background-color: #e8f5e8;
    color: #2e7d32;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #4caf50;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.1);
}

/* 按钮样式 - 所有页面共用 */
.action-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #2e7d32;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(46, 125, 50, 0.2);
}

.action-btn:hover {
    background-color: #1b5e20;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.3);
}

.action-btn-secondary {
    background-color: #1a73e8;
}

.action-btn-secondary:hover {
    background-color: #1557b0;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-success {
    background-color: #2e7d32;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-success:hover {
    background-color: #1b5e20;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.btn-danger {
    background-color: #dc3545;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-danger:hover {
    background-color: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-primary {
    background-color: #1a73e8;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #1557b0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* 表单样式 - 所有页面共用 */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 16px;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    padding: 10px 16px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
}

.form-group input[type="file"] {
    border: 2px dashed #ced4da;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
    border-color: #1a73e8;
    background-color: #f1f3f4;
}

.form-group p {
    margin-top: 8px;
    font-size: 14px;
    color: #6c757d;
}

/* 卡片样式 - 所有页面共用 */
.module {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.module-title {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    border-bottom: 3px solid #1a73e8;
    padding-bottom: 12px;
    display: inline-block;
}

.card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.card h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
    font-weight: 700;
    border-bottom: 3px solid #e9ecef;
    padding-bottom: 16px;
}

.form-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

.form-card h2 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    border-bottom: 3px solid #1a73e8;
    padding-bottom: 12px;
    display: inline-block;
}

/* 表格样式 - 所有页面共用 */
.table-container {
    overflow-x: auto;
    margin-top: 24px;
}

.order-table {
    width: 100%;
    border-collapse: collapse;
}

.order-table th,
.order-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.order-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
}

.order-table tr:hover {
    background-color: #f8f9fa;
}

/* 状态徽章样式 - 所有页面共用 */
.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
}

/* 头像样式 - 个人中心页面使用 */
.profile-avatar-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* 未绑定状态样式 - 个人中心页面使用 */
.unbound-status {
    color: #e74c3c;
}

/* 表单提示文字样式 - 完成订单页面使用 */
.form-hint {
    font-size: 14px;
    color: #6c757d;
    margin-top: 8px;
}

/* 按钮容器样式 - 重新提交订单页面使用 */
.btn-container {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

/* 空状态提示样式 - 提现页面使用 */
.empty-hint {
    margin-top: 20px;
    color: #666;
    font-size: 15px;
}

/* 完成凭证图片样式 - 后台管理页面使用 */
.completion-image {
    max-width: 80px;
    max-height: 60px;
    border-radius: 4px;
    cursor: pointer;
}

/* 重新提交按钮样式 - 首页使用 */
.resubmit-btn {
    margin-top: 12px;
    display: inline-block;
}

.status-available {
    background-color: #e8f5e8;
    color: #2e7d32;
}

.status-taken {
    background-color: #fff8e1;
    color: #ef6c00;
}

.status-completed {
    background-color: #e3f2fd;
    color: #1565c0;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-approved {
    background-color: #d4edda;
    color: #155724;
}

.status-rejected {
    background-color: #f8d7da;
    color: #721c24;
}

.status-canceled {
    background-color: #f5f5f5;
    color: #666;
}

/* 支付宝状态样式 - 用户管理页面使用 */
.alipay-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.alipay-bound {
    background-color: #d4edda;
    color: #155724;
}

.alipay-unbound {
    background-color: #f8d7da;
    color: #721c24;
}

/* 头像样式 - 用户管理页面使用 */
.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e9ecef;
}

.order-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* 页脚样式 - 所有页面共用 */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    background-color: #ffffff;
    color: #6c757d;
    border-top: 2px solid #e9ecef;
}

footer p {
    font-size: 14px;
}

/* ========================================= */
/* 首页样式 - index.php */
/* ========================================= */

/* 登录区域样式 */
.login-section {
    text-align: center;
    padding: 80px 0;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

.login-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.login-section p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
}

.login-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a73e8;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(26, 115, 232, 0.2);
}

.login-btn:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26, 115, 232, 0.3);
}

/* 订单卡片样式 */
.order-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 24px;
    margin-bottom: 20px;
    border-left: 4px solid #1a73e8;
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.order-title {
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.order-price {
    color: #d32f2f;
    font-weight: 700;
    font-size: 20px;
}

.order-meta {
    margin-bottom: 16px;
}

.order-homepage-id {
    background-color: #f8f9fa;
    padding: 10px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    border-left: 3px solid #ffc107;
}

.order-homepage-id strong {
    color: #333;
}

.order-description {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f1f3f4;
}

/* 拒绝原因样式 */
.rejection-reason {
    margin-top: 12px;
    padding: 12px;
    background-color: #f8d7da;
    border-radius: 8px;
    font-size: 14px;
    color: #721c24;
}

/* 空状态样式 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
    font-size: 16px;
}

.empty-state p {
    margin-bottom: 20px;
}

/* ========================================= */
/* 后台页面样式 - admin/ */
/* ========================================= */

/* 后台导航样式 */
.nav ul {
    gap: 20px;
}

.nav ul li a {
    padding: 8px 16px;
    font-size: 14px;
}

/* 卡片头部样式 */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

/* 筛选表单样式 */
.filter-form {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #e9ecef;
}

.filter-form form {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-form label {
    font-weight: 600;
    color: #6c757d;
    font-size: 15px;
}

.filter-form input[type="text"] {
    min-width: 200px;
    padding: 10px 16px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
}

.filter-form button {
    padding: 10px 20px;
    background-color: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-form button:hover {
    background-color: #1557b0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.filter-form a {
    padding: 10px 20px;
    background-color: #6c757d;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-form a:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* 状态表单样式 */
.status-form {
    display: inline-block;
    margin-bottom: 12px;
}

.status-select {
    padding: 6px 12px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 13px;
    background-color: #fff;
}

/* 操作按钮容器样式 */
.action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* 空消息样式 */
.empty-message {
    text-align: center;
    padding: 60px 40px;
    color: #6c757d;
    font-style: italic;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 24px;
}

.empty-message a {
    margin-top: 20px;
    display: inline-block;
}

/* ========================================= */
/* 个人中心样式 - profile.php */
/* ========================================= */

/* 个人信息卡片样式 */
.profile-info {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.profile-details h2 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.profile-details p {
    color: #6c757d;
    margin-bottom: 8px;
    font-size: 15px;
}

.profile-details strong {
    color: #555;
}

/* 支付宝绑定表单样式 */
.alipay-form {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #e9ecef;
}

.alipay-form h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.alipay-note {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    color: #856404;
    font-size: 14px;
}

.alipay-note strong {
    font-weight: 600;
}

/* 余额信息样式 */
.balance-info {
    background-color: #e3f2fd;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 30px;
    border: 1px solid #bbdefb;
}

.balance-info h3 {
    color: #1976d2;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.balance-amount {
    font-size: 32px;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 8px;
}

.balance-note {
    font-size: 14px;
    color: #64b5f6;
}

/* ========================================= */
/* 提现页面样式 - withdraw.php */
/* ========================================= */

/* 提现表单样式 */
.withdraw-form {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #e9ecef;
}

.withdraw-form h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.withdraw-amount {
    font-size: 24px;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 24px;
}

/* 提现记录样式 */
.withdraw-record {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.withdraw-record:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transform: translateY(-1px);
}

.withdraw-record-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.withdraw-record-id {
    font-size: 14px;
    color: #6c757d;
}

.withdraw-record-amount {
    font-size: 18px;
    font-weight: 600;
    color: #d32f2f;
}

.withdraw-record-body {
    margin-bottom: 12px;
}

.withdraw-record-body p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 4px;
}

.withdraw-record-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
}

.withdraw-record-date {
    font-size: 13px;
    color: #999;
}

/* ========================================= */
/* 完成订单页面样式 - complete_order.php */
/* ========================================= */

/* 订单信息样式 */
.order-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

.order-info h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.order-info p {
    margin-bottom: 8px;
    font-size: 15px;
}

.order-info strong {
    color: #555;
}

/* ========================================= */
/* 重新提交订单页面样式 - resubmit_order.php */
/* ========================================= */

/* 继承 complete_order.php 的 order-info 样式 */

/* ========================================= */
/* 发布订单页面样式 - admin/publish_order.php */
/* ========================================= */

/* 订单类型选择样式 */
.order-type-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.order-type-card {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-type-card:hover {
    border-color: #1a73e8;
    background-color: #f1f3f4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.1);
}

.order-type-card.selected {
    border-color: #1a73e8;
    background-color: #e3f2fd;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

.order-type-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.order-type-price {
    font-size: 18px;
    font-weight: 700;
    color: #1a73e8;
}

/* ========================================= */
/* 后台首页样式 - admin/index.php */
/* ========================================= */

/* 仪表盘统计样式 */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stat-card h3 {
    color: #6c757d;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #1a73e8;
}

/* 快速操作样式 */
.quick-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* 管理员信息样式 */
.admin-info {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.admin-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #e9ecef;
}

.admin-details h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.admin-details p {
    color: #6c757d;
    font-size: 14px;
}

.logout-btn {
    margin-left: auto;
    padding: 10px 24px;
    background-color: #dc3545;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background-color: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* ========================================= */
/* 页脚信息样式 */
/* ========================================= */

.footer-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info .list-group-item {
    margin: 0;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.footer-info img {
    vertical-align: middle;
    margin-right: 5px;
}

.footer-info a {
    color: #1a73e8;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

/* ========================================= */
/* 响应式设计 */
/* ========================================= */

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .profile-info {
        flex-direction: column;
        text-align: center;
    }
    
    .order-type-selector {
        grid-template-columns: 1fr;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .order-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .filter-form form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .table-container {
        font-size: 14px;
    }
    
    .order-table th,
    .order-table td {
        padding: 12px;
    }
}