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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* LOGIN PAGE STYLES */
.tc-login-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #7FD9D1 0%, #7FD9D1 50%, #ffffff 50%, #ffffff 100%);
    position: relative;
    display: flex;
    flex-direction: column;
}

.tc-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
}

.tc-login-logo {
    font-size: 48px;
    font-weight: 700;
    color: #000;
}

.tc-login-logo img {
    height: 48px;
    width: auto;
}

.tc-signup-btn {
    padding: 12px 32px;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tc-signup-btn:hover {
    background: #000;
    color: #fff;
}

.tc-login-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.tc-login-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 50px 60px;
    max-width: 480px;
    width: 100%;
}

.tc-login-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}

.tc-login-form {
    width: 100%;
}

.tc-login-group {
    margin-bottom: 24px;
}

.tc-login-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.tc-login-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.tc-login-input:focus {
    outline: none;
    border-color: #3FD4C8;
}

.tc-login-input::placeholder {
    color: #999;
}

.tc-password-wrapper {
    position: relative;
}

.tc-password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    user-select: none;
}

.tc-login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.tc-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #000;
}

.tc-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #3FD4C8;
}

.tc-forgot-link {
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.tc-forgot-link:hover {
    text-decoration: underline;
}

.tc-proceed-btn {
    width: 100%;
    padding: 16px;
    background: #3FD4C8;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tc-proceed-btn:hover {
    background: #2EC4B8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 212, 200, 0.3);
}

.tc-login-footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 13px;
    color: #000;
}

/* ORDER FORM STYLES */
.tc-order-wrapper {
    min-height: 100vh;
    background: #f8f9fa;
    padding: 40px 20px;
}

/* Form Header with Login Button */
.tc-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    padding: 0 20px;
}

.tc-form-logo {
    font-size: 56px;
    font-weight: 700;
    color: #3FD4C8;
}

.tc-form-logo img {
    height: 56px;
    width: auto;
}

.tc-form-login-btn,
.tc-form-dashboard-btn {
    padding: 12px 32px;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tc-form-login-btn:hover,
.tc-form-dashboard-btn:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.tc-order-logo {
    font-size: 56px;
    font-weight: 700;
    color: #3FD4C8;
    text-align: center;
    margin-bottom: 30px;
}

.tc-order-container {
    max-width: 900px;
    margin: 0 auto;
}

.tc-order-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 16px;
}

.tc-order-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* User Welcome Message */
.tc-user-welcome-message {
    background: linear-gradient(135deg, rgba(63, 212, 200, 0.1), rgba(45, 212, 191, 0.1));
    border: 1px solid rgba(63, 212, 200, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tc-welcome-icon {
    font-size: 48px;
    background: linear-gradient(135deg, #3FD4C8, #2dd4bf);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(63, 212, 200, 0.3);
}

.tc-welcome-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
}

.tc-welcome-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.tc-order-form {
    width: 100%;
}

/* Readonly Input Styling */
.tc-order-input[readonly] {
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.tc-order-input[readonly]:focus {
    border-color: #e9ecef;
    background: #f8f9fa;
    box-shadow: none;
}

.tc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.tc-form-col {
    display: flex;
    flex-direction: column;
}

.tc-form-col label,
.tc-form-group-full label.tc-radio-label {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.tc-order-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    transition: all 0.3s ease;
}

.tc-order-input:focus {
    outline: none;
    border-color: #3FD4C8;
    background: #fff;
}

.tc-order-input::placeholder {
    color: #999;
}

.tc-form-group-full {
    margin-bottom: 30px;
}

.tc-radio-group {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    gap: 40px;
}

.tc-radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    color: #000;
}

.tc-radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #3FD4C8;
}

.tc-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.tc-submit-btn {
    padding: 16px 100px;
    background: #3FD4C8;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tc-submit-btn:hover {
    background: #2EC4B8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 212, 200, 0.3);
}

/* MESSAGE STYLES */
.tc-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 6px;
    display: none;
}

.tc-message.tc-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.tc-message.tc-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* DASHBOARD STYLES (keeping existing) */
.tc-form-container,
.tc-dashboard-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.tc-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.tc-dashboard-header h2 {
    font-size: 28px;
    color: #0E71AB;
}

.tc-search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.tc-search-input {
    flex: 1;
}

.tc-orders-table-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

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

.tc-orders-table thead {
    background: #f5f5f5;
}

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

.tc-orders-table th {
    font-weight: 600;
    color: #0E71AB;
}

.tc-orders-table tbody tr:hover {
    background: #f9f9f9;
}

.tc-no-orders {
    text-align: center;
    color: #999;
    padding: 40px !important;
}

.tc-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.tc-badge-pending {
    background: #6c757d;
    color: #fff;
}

.tc-badge-packaged {
    background: #ffc107;
    color: #000;
}

.tc-badge-arrived {
    background: #28a745;
    color: #fff;
}

.tc-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tc-btn-primary {
    background: linear-gradient(135deg, #43E7D7 0%, #2dd4bf 100%);
    color: #000;
    width: 100%;
    font-weight: 600;
}

.tc-btn-primary:hover {
    background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 231, 215, 0.3);
}

.tc-btn-secondary {
    background: #000;
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
}

.tc-btn-secondary:hover {
    background: #374151;
    transform: translateY(-1px);
}

.tc-btn-small {
    padding: 6px 12px;
    font-size: 14px;
}

/* ADMIN STYLES (keeping existing) */
.tc-admin-wrap {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.tc-admin-wrap h1 {
    color: #0E71AB;
    margin-bottom: 30px;
}

.tc-admin-search {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    max-width: 600px;
}

.tc-admin-table-container {
    overflow-x: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tc-admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1200px;
}

.tc-admin-table thead {
    background: #f5f5f5;
}

.tc-admin-table th,
.tc-admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.tc-admin-table th {
    font-weight: 600;
    color: #0E71AB;
}

.tc-admin-table tbody tr:hover {
    background: #f9f9f9;
}

.tc-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.tc-modal.tc-modal-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-modal-content {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideIn 0.3s ease;
}

.tc-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tc-modal-close:hover {
    color: #333;
}

.tc-modal-content h2 {
    color: #0E71AB;
    margin-bottom: 25px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Admin Dashboard Styles */
.tc-admin-dashboard {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.tc-admin-header {
    background: linear-gradient(135deg, #43E7D7 0%, #2dd4bf 100%);
    color: #000;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: 0 4px 20px rgba(67, 231, 215, 0.3);
}

.tc-admin-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.tc-admin-title h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #000;
}

.tc-admin-title p {
    font-size: 16px;
    margin: 0;
    opacity: 0.7;
    color: #000;
}

.tc-admin-actions .tc-btn {
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.2);
    color: #000;
    backdrop-filter: blur(10px);
}

.tc-admin-actions .tc-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Tabs Navigation */
.tc-tabs-nav {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

.tc-tab-btn {
    background: none;
    border: none;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.tc-tab-btn:hover {
    color: #43E7D7;
    background: rgba(67, 231, 215, 0.05);
}

.tc-tab-btn.tc-tab-active {
    color: #43E7D7;
    border-bottom-color: #43E7D7;
    background: rgba(67, 231, 215, 0.05);
}

.tc-tab-content {
    display: none;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.tc-tab-content.tc-tab-active {
    display: block;
}

.tc-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Stats Grid */
.tc-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tc-stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid;
}

.tc-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tc-stat-primary { border-left-color: #43E7D7; }
.tc-stat-success { border-left-color: #10b981; }
.tc-stat-warning { border-left-color: #f59e0b; }
.tc-stat-info { border-left-color: #3b82f6; }

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

.tc-stat-primary .tc-stat-icon { background: linear-gradient(135deg, #43E7D7, #2dd4bf); }
.tc-stat-success .tc-stat-icon { background: linear-gradient(135deg, #10b981, #059669); }
.tc-stat-warning .tc-stat-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.tc-stat-info .tc-stat-icon { background: linear-gradient(135deg, #3b82f6, #2563eb); }

.tc-stat-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #2c3e50;
}

.tc-stat-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* USER DASHBOARD STYLES */
.tc-user-dashboard-wrapper {
    min-height: 100vh;
    background: #f8f9fa;
}

.tc-user-dashboard-header {
    background: linear-gradient(135deg, #3FD4C8 0%, #2dd4bf 100%);
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(63, 212, 200, 0.2);
}

.tc-user-header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tc-user-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tc-dashboard-logo {
    font-size: 48px;
    font-weight: 700;
    color: #000;
}

.tc-dashboard-logo img {
    height: 48px;
    width: auto;
}

.tc-user-info h1 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
}

.tc-user-info p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.tc-logout-btn {
    padding: 12px 32px;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tc-logout-btn:hover {
    background: #000;
    color: #fff;
}

/* User Tabs Navigation */
.tc-user-tabs-nav {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

.tc-user-tab-btn {
    background: none;
    border: none;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.tc-user-tab-btn:hover {
    color: #3FD4C8;
    background: rgba(63, 212, 200, 0.05);
}

.tc-user-tab-btn.tc-user-tab-active {
    color: #3FD4C8;
    border-bottom-color: #3FD4C8;
    background: rgba(63, 212, 200, 0.05);
}

.tc-tab-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.tc-user-tab-content {
    display: none;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.tc-user-tab-content.tc-user-tab-active {
    display: block;
}

/* User Stats Grid */
.tc-user-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.tc-user-stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid;
}

.tc-user-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tc-user-stat-card.tc-stat-primary { border-left-color: #3FD4C8; }
.tc-user-stat-card.tc-stat-pending { border-left-color: #6b7280; }
.tc-user-stat-card.tc-stat-packaged { border-left-color: #f59e0b; }
.tc-user-stat-card.tc-stat-arrived { border-left-color: #10b981; }

.tc-user-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.tc-stat-primary .tc-user-stat-icon { background: linear-gradient(135deg, #3FD4C8, #2dd4bf); }
.tc-stat-pending .tc-user-stat-icon { background: linear-gradient(135deg, #6b7280, #4b5563); }
.tc-stat-packaged .tc-user-stat-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.tc-stat-arrived .tc-user-stat-icon { background: linear-gradient(135deg, #10b981, #059669); }

.tc-user-stat-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #000;
}

.tc-user-stat-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* User Section */
.tc-user-section {
    margin-bottom: 30px;
}

.tc-user-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

/* Quick Actions Section */
.tc-user-quick-actions {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.tc-new-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #3FD4C8 0%, #2dd4bf 100%);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(63, 212, 200, 0.2);
    border: none;
    cursor: pointer;
}

.tc-new-order-btn:hover {
    background: linear-gradient(135deg, #2EC4B8 0%, #14b8a6 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(63, 212, 200, 0.4);
    text-decoration: none;
    color: #000;
}

.tc-new-order-btn:active {
    transform: translateY(-1px);
}

.tc-btn-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Recent Orders Cards */
.tc-user-recent-orders {
    display: grid;
    gap: 20px;
}

.tc-user-order-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tc-user-order-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

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

.tc-user-order-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
}

.tc-user-order-meta {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

.tc-user-order-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.tc-user-order-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tc-detail-label {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tc-detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.tc-user-order-timeline {
    border-top: 1px solid #e5e7eb;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tc-timeline-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
}

.tc-timeline-icon {
    font-size: 18px;
}

/* Order Notes Section */
.tc-user-order-notes {
    border-top: 1px solid #e5e7eb;
    margin-top: 15px;
}

.tc-notes-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 10px 0;
    cursor: pointer;
}

.tc-notes-header:hover {
    background: rgba(63, 212, 200, 0.05);
    margin: 0 -15px;
    padding: 15px 15px 10px 15px;
    border-radius: 8px;
}

.tc-notes-icon {
    font-size: 16px;
    margin-right: 8px;
}

.tc-notes-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    flex: 1;
}

.tc-notes-toggle-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: #3FD4C8;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.tc-notes-toggle-btn:hover {
    background: rgba(63, 212, 200, 0.1);
    color: #2EC4B8;
}

.tc-notes-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.tc-notes-toggle-btn.tc-notes-expanded .tc-notes-arrow {
    transform: rotate(180deg);
}

.tc-notes-content {
    padding-bottom: 15px;
    animation: slideDown 0.3s ease;
}

.tc-notes-view {
    margin-bottom: 15px;
}

.tc-notes-text {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 10px;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.tc-notes-empty {
    color: #9ca3af;
    font-style: italic;
}

.tc-notes-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #3FD4C8;
    border: none;
    border-radius: 6px;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tc-notes-edit-btn:hover {
    background: #2EC4B8;
    transform: translateY(-1px);
}

.tc-notes-edit-btn svg {
    width: 14px;
    height: 14px;
}

.tc-notes-textarea {
    width: 100%;
    min-height: 80px;
    max-height: 200px;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.5;
    resize: vertical;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.tc-notes-textarea:focus {
    outline: none;
    border-color: #3FD4C8;
    background: rgba(63, 212, 200, 0.05);
}

.tc-notes-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.tc-notes-save-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #10b981;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tc-notes-save-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}

.tc-notes-save-btn svg {
    width: 14px;
    height: 14px;
}

.tc-notes-cancel-btn {
    background: #6b7280;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tc-notes-cancel-btn:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
        padding-bottom: 15px;
    }
}

/* Empty State */
.tc-user-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tc-empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.tc-user-empty-state h4 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
}

.tc-user-empty-state p {
    font-size: 15px;
    color: #6c757d;
    margin: 0 0 25px 0;
}

.tc-user-cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #3FD4C8;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.tc-user-cta-btn:hover {
    background: #2EC4B8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 212, 200, 0.3);
}

/* Filters Section */
.tc-user-filters-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tc-user-search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tc-user-search-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.tc-user-search-input:focus {
    outline: none;
    border-color: #3FD4C8;
}

.tc-user-search-btn {
    padding: 14px 24px;
    background: #3FD4C8;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-user-search-btn svg {
    width: 20px;
    height: 20px;
    fill: #000;
}

.tc-user-search-btn:hover {
    background: #2EC4B8;
    transform: scale(1.05);
}

.tc-user-filter-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tc-filter-chip {
    padding: 8px 20px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tc-filter-chip:hover {
    border-color: #3FD4C8;
    color: #3FD4C8;
}

.tc-filter-chip.tc-filter-active {
    background: #3FD4C8;
    border-color: #3FD4C8;
    color: #000;
}

/* Orders Section */
.tc-user-orders-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tc-user-orders-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
}

.tc-user-orders-section h3 span {
    color: #6c757d;
    font-weight: 400;
    font-size: 16px;
}

.tc-user-table-container {
    overflow-x: auto;
    border-radius: 8px;
}

.tc-user-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.tc-user-orders-table thead {
    background: linear-gradient(135deg, #3FD4C8, #2dd4bf);
}

.tc-user-orders-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #000;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tc-user-orders-table td {
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
    font-size: 14px;
}

.tc-user-orders-table tbody tr {
    transition: all 0.3s ease;
}

.tc-user-orders-table tbody tr:hover {
    background: rgba(63, 212, 200, 0.05);
}

.tc-user-orders-table tbody tr:last-child td {
    border-bottom: none;
}

.tc-user-no-orders {
    text-align: center;
    color: #999;
    padding: 40px !important;
    font-size: 15px;
}

/* ADMIN DASHBOARD STYLES */
.tc-admin-dashboard-wrapper {
    min-height: 100vh;
    background: #f8f9fa;
}

.tc-admin-dashboard-header {
    background: linear-gradient(135deg, #3FD4C8 0%, #2dd4bf 100%);
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(63, 212, 200, 0.2);
}

.tc-admin-header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tc-admin-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tc-admin-dashboard-logo {
    font-size: 48px;
    font-weight: 700;
    color: #000;
}

.tc-admin-dashboard-logo img {
    height: 48px;
    width: auto;
}

.tc-admin-info h1 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
}

.tc-admin-info p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.tc-admin-logout-btn {
    padding: 12px 32px;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tc-admin-logout-btn:hover {
    background: #000;
    color: #fff;
}

/* Admin Tabs */
.tc-admin-tabs-nav {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

.tc-admin-tab-btn {
    background: none;
    border: none;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.tc-admin-tab-btn:hover {
    color: #3FD4C8;
    background: rgba(63, 212, 200, 0.05);
}

.tc-admin-tab-btn.tc-admin-tab-active {
    color: #3FD4C8;
    border-bottom-color: #3FD4C8;
    background: rgba(63, 212, 200, 0.05);
}

.tc-admin-tab-content {
    display: none;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.tc-admin-tab-content.tc-admin-tab-active {
    display: block;
}

/* Admin Stats Grid */
.tc-admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.tc-admin-stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid;
}

.tc-admin-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tc-admin-stat-card.tc-stat-primary { border-left-color: #3FD4C8; }
.tc-admin-stat-card.tc-stat-success { border-left-color: #10b981; }
.tc-admin-stat-card.tc-stat-warning { border-left-color: #f59e0b; }
.tc-admin-stat-card.tc-stat-info { border-left-color: #3b82f6; }

.tc-admin-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.tc-stat-primary .tc-admin-stat-icon { background: linear-gradient(135deg, #3FD4C8, #2dd4bf); }
.tc-stat-success .tc-admin-stat-icon { background: linear-gradient(135deg, #10b981, #059669); }
.tc-stat-warning .tc-admin-stat-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.tc-stat-info .tc-admin-stat-icon { background: linear-gradient(135deg, #3b82f6, #2563eb); }

.tc-admin-stat-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #000;
}

.tc-admin-stat-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Admin Status Overview */
.tc-admin-status-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tc-admin-status-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tc-admin-status-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.tc-admin-status-card.tc-status-pending { border-top: 4px solid #6b7280; }
.tc-admin-status-card.tc-status-packaged { border-top: 4px solid #f59e0b; }
.tc-admin-status-card.tc-status-arrived { border-top: 4px solid #10b981; }

.tc-admin-status-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
}

.tc-status-pending .tc-admin-status-icon { background: linear-gradient(135deg, #6b7280, #4b5563); color: white; }
.tc-status-packaged .tc-admin-status-icon { background: linear-gradient(135deg, #f59e0b, #d97706); color: white; }
.tc-status-arrived .tc-admin-status-icon { background: linear-gradient(135deg, #10b981, #059669); color: white; }

.tc-admin-status-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #000;
}

.tc-admin-status-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Admin Location Stats */
.tc-admin-location-stats {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tc-admin-location-stats h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 20px 0;
}

.tc-admin-location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.tc-admin-location-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3FD4C8;
}

.tc-admin-location-name {
    font-weight: 500;
    color: #000;
}

.tc-admin-location-count {
    font-weight: 700;
    color: #3FD4C8;
    font-size: 18px;
}

/* Admin Filters Section */
.tc-admin-filters-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tc-admin-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tc-admin-filters-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.tc-admin-filter-toggle-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #3FD4C8;
    color: #3FD4C8;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tc-admin-filter-toggle-btn:hover {
    background: #3FD4C8;
    color: #000;
}

.tc-admin-filter-toggle-btn svg {
    width: 18px;
    height: 18px;
}

.tc-admin-advanced-filters {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    animation: slideDown 0.3s ease;
}

.tc-admin-filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.tc-admin-filter-group {
    display: flex;
    flex-direction: column;
}

.tc-admin-filter-group label {
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    font-size: 14px;
}

.tc-admin-filter-input {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tc-admin-filter-input:focus {
    outline: none;
    border-color: #3FD4C8;
}

.tc-admin-filter-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.tc-admin-filter-apply-btn {
    padding: 12px 24px;
    background: #3FD4C8;
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tc-admin-filter-apply-btn:hover {
    background: #2EC4B8;
    transform: translateY(-2px);
}

.tc-admin-filter-apply-btn svg {
    width: 16px;
    height: 16px;
}

.tc-admin-filter-clear-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #000;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tc-admin-filter-clear-btn:hover {
    background: #000;
    color: #fff;
}

.tc-admin-filter-clear-btn svg {
    width: 16px;
    height: 16px;
}

/* Admin Orders Section */
.tc-admin-orders-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tc-admin-orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tc-admin-orders-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.tc-admin-orders-header h3 span {
    color: #6c757d;
    font-weight: 400;
    font-size: 16px;
}

.tc-admin-loading-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6c757d;
    font-size: 14px;
}

.tc-admin-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-top: 2px solid #3FD4C8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.tc-admin-table-container {
    overflow-x: auto;
    border-radius: 8px;
}

.tc-admin-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 1200px;
}

.tc-admin-orders-table thead {
    background: linear-gradient(135deg, #3FD4C8, #2dd4bf);
}

.tc-admin-orders-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #000;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tc-admin-orders-table td {
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
    font-size: 14px;
}

.tc-admin-orders-table tbody tr {
    transition: all 0.3s ease;
}

.tc-admin-orders-table tbody tr:hover {
    background: rgba(63, 212, 200, 0.05);
}

.tc-admin-orders-table tbody tr:last-child td {
    border-bottom: none;
}

.tc-admin-update-btn {
    padding: 8px 20px;
    background: #3FD4C8;
    border: none;
    border-radius: 6px;
    color: #000;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tc-admin-update-btn:hover {
    background: #2EC4B8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 212, 200, 0.3);
}

.tc-admin-no-orders {
    text-align: center;
    color: #999;
    padding: 40px !important;
    font-size: 15px;
}

/* UPDATE MODAL STYLES */
.tc-update-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.tc-update-modal.tc-modal-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-update-modal-content {
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideIn 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tc-update-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
}

.tc-update-modal-close:hover {
    color: #000;
    background: #e9ecef;
    transform: rotate(90deg);
}

.tc-update-modal-header {
    background: linear-gradient(135deg, #3FD4C8, #2dd4bf);
    padding: 40px;
    border-radius: 16px 16px 0 0;
    text-align: center;
}

.tc-update-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 15px;
}

.tc-update-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
}

.tc-update-modal-header p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.tc-update-form {
    padding: 40px;
}

.tc-update-form-group {
    margin-bottom: 25px;
}

.tc-update-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    font-size: 15px;
}

.tc-label-icon {
    width: 20px;
    height: 20px;
    fill: #3FD4C8;
}

.tc-update-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.tc-update-input:focus {
    outline: none;
    border-color: #3FD4C8;
    background: rgba(63, 212, 200, 0.05);
}

/* Input Row Layout for Initials and Date */
.tc-input-row {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.tc-input-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tc-input-group.tc-date-group {
    flex: 2;
}

.tc-sub-label {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tc-initials-input {
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.tc-input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.tc-date-icon {
    position: absolute;
    right: 12px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.tc-date-icon:hover {
    transform: scale(1.1);
}

.tc-input-hint {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-top: 6px;
}

.tc-update-submit-btn {
    width: 100%;
    padding: 16px;
    background: #3FD4C8;
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.tc-update-submit-btn:hover {
    background: #2EC4B8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 212, 200, 0.3);
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
    .tc-admin-dashboard-header {
        padding: 20px;
    }
    
    .tc-admin-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .tc-admin-dashboard-logo {
        font-size: 36px;
    }
    
    .tc-admin-dashboard-logo img {
        height: 36px;
    }
    
    .tc-admin-tabs-nav {
        padding: 0 20px;
    }
    
    .tc-admin-tab-content {
        padding: 20px;
    }
    
    .tc-admin-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tc-admin-status-overview {
        grid-template-columns: 1fr;
    }
    
    .tc-admin-filter-row {
        grid-template-columns: 1fr;
    }
    
    .tc-admin-filter-actions {
        justify-content: center;
    }
    
    .tc-user-dashboard-header {
        padding: 20px;
    }
    
    .tc-user-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .tc-dashboard-logo {
        font-size: 36px;
    }
    
    .tc-dashboard-logo img {
        height: 36px;
    }
    
    .tc-user-info h1 {
        font-size: 22px;
    }
    
    .tc-user-tabs-nav {
        padding: 0 20px;
    }
    
    .tc-user-tab-content {
        padding: 20px;
    }
    
    .tc-user-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tc-user-order-details {
        grid-template-columns: 1fr;
    }
    
    .tc-user-search-bar {
        flex-direction: column;
    }
    
    .tc-user-filter-chips {
        justify-content: center;
    }
    
    .tc-user-table-container {
        overflow-x: scroll;
    }
    
    .tc-user-orders-table {
        min-width: 800px;
    }
    
    /* Modal responsive adjustments */
    .tc-input-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .tc-input-group {
        width: 100%;
    }
    
    .tc-input-group.tc-date-group {
        flex: 1;
    }
    
    .tc-update-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .tc-update-form {
        padding: 30px 20px;
    }
    
    .tc-update-modal-header {
        padding: 30px 20px;
    }
    

    .tc-login-header {
        padding: 20px;
    }
    
    .tc-login-card {
        padding: 40px 30px;
    }
    
    .tc-order-logo {
        font-size: 42px;
    }
    
    .tc-order-main-title {
        font-size: 24px;
    }
    
    .tc-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tc-radio-group {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Form Header Responsive */
    .tc-form-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0 10px;
    }
    
    .tc-form-logo {
        font-size: 42px;
    }
    
    .tc-form-logo img {
        height: 42px;
    }
    
    /* Welcome Message Responsive */
    .tc-user-welcome-message {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .tc-welcome-icon {
        margin: 0 auto;
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
    
    /* New Order Button Responsive */
    .tc-new-order-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    /* Notes Section Responsive */
    .tc-notes-header {
        margin: 0 -10px;
        padding: 15px 10px 10px 10px;
    }
    
    .tc-notes-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .tc-notes-save-btn,
    .tc-notes-cancel-btn {
        width: 100%;
        justify-content: center;
    }
    
    .tc-submit-btn {
        padding: 16px 60px;
    }
    
    .tc-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .tc-search-bar {
        flex-direction: column;
    }
    
    .tc-orders-table th,
    .tc-orders-table td {
        padding: 10px;
        font-size: 13px;
    }
}



.ui-datepicker {
    z-index: 9999 !important;
}