/* الألوان الاحترافية بأسلوب Instagram */
:root {
    --primary-gradient: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
    --primary-gradient-hover: linear-gradient(135deg, #ff954d 0%, #e94a94 50%, #9854c4 100%);
    --orange: #f58529;
    --pink: #dd2a7b;
    --purple: #8134af;
    --yellow: #feda75;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --text-dark: #262626;
    --text-light: #8e8e8e;
    --border-color: #dbdbdb;
    --success: #00c853;
    --warning: #ff9800;
    --danger: #f44336;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

/* تحسينات عامة للموبايل */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-tap-highlight-color: transparent;
    background: linear-gradient(135deg, #ffeef8 0%, #e8f5e9 50%, #f3e5f5 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

/* خلفية متحركة للصفحات المسجل دخولها */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(245, 133, 41, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(221, 42, 123, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(129, 52, 175, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

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

/* صفحة تسجيل الدخول */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.login-box {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.logo-text {
    font-size: 3rem;
    font-weight: bold;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.logo-subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

/* النافبار */
.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 2rem;
    font-weight: bold;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.user-id {
    font-weight: 600;
    color: var(--text-dark);
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.2);
}

.user-balance {
    font-weight: 600;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(245, 133, 41, 0.3);
}

.btn-settings {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-settings:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* المحتوى الرئيسي */
.main-content {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
}

/* الشريط الجانبي */
.sidebar {
    width: 250px;
    background: var(--bg-white);
    border-radius: 15px;
    padding: 20px;
    height: fit-content;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 90px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar-item:hover {
    background: var(--bg-light);
    transform: translateX(-5px);
}

.sidebar-item.active {
    background: var(--primary-gradient);
    color: white;
}

.sidebar-item .icon {
    font-size: 1.5rem;
}

/* منطقة المحتوى */
.content-area {
    flex: 1;
    padding: 0;
}

/* بطاقة العنوان الرئيسي */
.hero-card {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(221, 42, 123, 0.3);
    text-align: center;
}

.hero-card .hero-title {
    color: white;
    font-size: 2rem;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* بطاقة تفاصيل الخدمة */
.service-details-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-details-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--pink);
}

.service-details-card .section-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--pink);
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

/* بطاقة التنبيه */
.warning-card {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    border: 2px solid var(--warning);
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.2);
}

.warning-card h4 {
    color: var(--warning);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.warning-card ul {
    list-style: none;
    padding: 0;
}

.warning-card ul li {
    padding: 10px 0;
    color: #e65100;
    font-weight: 500;
    padding-right: 20px;
    position: relative;
}

.warning-card ul li:before {
    content: "•";
    position: absolute;
    right: 0;
    color: var(--warning);
    font-size: 1.5rem;
}

/* بطاقة النموذج */
.order-form-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
}

.order-form-card .section-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

/* النماذج */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(221, 42, 123, 0.1);
}

.form-group small {
    display: block;
    margin-top: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.input-hint {
    color: var(--purple);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 6px;
}

/* الأزرار */
/* الأزرار المحسنة */
.btn-submit,
.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(221, 42, 123, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-logout {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(221, 42, 123, 0.3);
}

.btn-logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 42, 123, 0.4);
}

.btn-submit:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(221, 42, 123, 0.5);
}

.btn-submit:active,
.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(221, 42, 123, 0.3);
}

.btn-submit:disabled,
.btn-primary:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* حاوية الحالة (التحميل/النجاح/الفشل) */
.status-container {
    text-align: center;
    padding: 40px 30px;
    margin-top: 20px;
    display: none;
    /* مخفي افتراضياً */
    animation: fadeIn 0.5s ease-out;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.9) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.status-icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.status-message {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 15px;
    line-height: 1.6;
}

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

.status-message.error {
    color: var(--danger);
}

.status-details {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
    line-height: 1.5;
}

/* Spinner Animation */
.spinner {
    width: 70px;
    height: 70px;
    border: 6px solid transparent;
    border-top: 6px solid var(--pink);
    border-right: 6px solid var(--purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.spinner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid transparent;
    border-bottom: 4px solid rgba(221, 42, 123, 0.3);
    border-left: 4px solid rgba(161, 92, 238, 0.3);
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Checkmark Success Icon */
.checkmark-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
}

.checkmark {
    color: white;
    font-size: 35px;
    font-weight: bold;
}

/* Crossmark Error Icon */
.crossmark-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--danger);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shake 0.5s ease-in-out;
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.3);
}

.crossmark {
    color: white;
    font-size: 35px;
    font-weight: bold;
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.status-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 10px;
}

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

.status-text.error {
    color: var(--danger);
}

/* --- أنماط صفحة الشحن المفقودة --- */

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

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.method-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.method-card:hover {
    border-color: var(--pink);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(221, 42, 123, 0.15);
}

.method-card .icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--bg-light);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.method-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.method-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.topup-form {
    background: var(--bg-white);
    border: 2px solid var(--pink);
    border-radius: 25px;
    padding: 50px;
    margin-top: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.4s ease-out;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.topup-form h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    text-align: center;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.step {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text-light);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    font-size: 1.1rem;
}

.step.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: scale(1.2);
    box-shadow: 0 5px 20px rgba(221, 42, 123, 0.4);
}

.step.completed {
    background: var(--success);
    color: white;
    border-color: var(--success);
    font-size: 1.2rem;
}

.line {
    width: 60px;
    height: 4px;
    background: var(--border-color);
    margin: 0 5px;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.line.completed {
    background: var(--success);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-secondary:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    font-size: 2rem;
    font-weight: bold;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--pink);
    background: rgba(221, 42, 123, 0.1);
}

.nav-links a.active {
    background: var(--primary-gradient);
    color: white;
}

/* التصميم المتجاوب - Desktop Large */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* التصميم المتجاوب - Tablet Landscape / Small Desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

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

/* التصميم المتجاوب - Tablet Portrait / iPad */
@media (max-width: 968px) {
    .main-content {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: static;
        display: flex;
        overflow-x: auto;
        padding: 15px 0;
        gap: 10px;
        border-radius: 15px;
        margin-bottom: 20px;
    }

    .sidebar-item {
        display: inline-flex;
        margin-left: 0;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .content-area {
        padding: 20px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .topup-form {
        padding: 30px 20px;
    }

    .nav-content {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-user {
        flex-wrap: wrap;
        gap: 8px;
    }

    .user-id, .user-balance {
        font-size: 0.85rem;
    }

    .btn-settings, .btn-logout {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .orders-list {
        grid-template-columns: 1fr;
    }

    .admin-table-container {
        overflow-x: auto;
    }

    .admin-table {
        min-width: 800px;
    }
}

/* التصميم المتجاوب - Mobile Large / Phablet */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 12px 0;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .login-container {
        padding: 20px;
    }

    .login-box {
        padding: 35px 25px;
        margin: 20px 0;
    }

    .logo-text {
        font-size: 2.2rem;
    }

    .hero-card, .service-details-card, .warning-card, .order-form-card {
        padding: 25px 20px;
    }

    .order-card, .settings-card {
        padding: 20px;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .btn-primary, .btn-submit, .btn-secondary {
        padding: 14px 25px;
        font-size: 1rem;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .filter-btn {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}

/* التصميم المتجاوب - Mobile Medium */
@media (max-width: 600px) {
    .login-box {
        padding: 30px 20px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .nav-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav-user {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .order-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .orders-filter {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
    }

    .filter-btn {
        flex: 1 1 auto;
        min-width: 120px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .features-list {
        font-size: 0.95rem;
    }

    .sidebar {
        padding: 10px;
        gap: 5px;
    }

    .sidebar-item {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .topup-option {
        padding: 20px 15px;
    }

    .option-amount {
        font-size: 1.5rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 25px 20px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-value {
        font-size: 1.8rem;
    }
}

/* التصميم المتجاوب - Mobile Small */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .login-box {
        padding: 25px 18px;
        border-radius: 20px;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .navbar {
        padding: 10px 0;
    }

    .user-id, .user-balance {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .btn-settings, .btn-logout {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero-card, .service-details-card, .warning-card, .order-form-card {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .hero-title {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .features-list {
        font-size: 0.9rem;
        padding-right: 20px;
    }

    .order-card {
        padding: 18px;
    }

    .order-title {
        font-size: 1rem;
    }

    .order-status {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .order-detail-label {
        font-size: 0.85rem;
    }

    .order-detail-value {
        font-size: 0.95rem;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="tel"] {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .btn-primary, .btn-submit, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 7px 12px;
        min-width: 100px;
    }

    .sidebar-item {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .topup-option {
        padding: 18px 12px;
    }

    .option-amount {
        font-size: 1.3rem;
    }

    .modal-content {
        width: 98%;
        padding: 20px 15px;
    }

    .modal-title {
        font-size: 1.2rem;
    }

    .empty-icon {
        font-size: 3.5rem;
    }

    .empty-state h3 {
        font-size: 1.4rem;
    }

    .empty-state p {
        font-size: 0.95rem;
    }
}

/* التصميم المتجاوب - Mobile Extra Small */
@media (max-width: 360px) {
    .logo-text {
        font-size: 1.6rem;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1rem;
    }

    .page-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .btn-primary, .btn-submit {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .order-card {
        padding: 15px;
    }

    .modal-content {
        padding: 18px 12px;
    }
}

/* ==================== تأثيرات متحركة احترافية ==================== */

/* تأثير الموجة عند النقر على الأزرار */
.btn-primary, .btn-submit, .btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:active::before, .btn-submit:active::before {
    width: 300px;
    height: 300px;
}

/* تأثير التألق المتحرك */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.sidebar-item.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 3s infinite;
}

/* تأثير الارتفاع للبطاقات */
.content-area, .sidebar, .method-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-area:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* تأثير النبض للرصيد */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.user-balance {
    animation: pulse 2s ease-in-out infinite;
}

/* تأثير التدرج المتحرك للشعار */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.nav-logo, .logo-text {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* تأثير التحميل الهيكلي */
@keyframes skeleton-loading {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

/* تأثير التلاشي للظهور */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-card, .method-card, .form-group {
    animation: fadeIn 0.5s ease-out backwards;
}

.order-card:nth-child(1) { animation-delay: 0.1s; }
.order-card:nth-child(2) { animation-delay: 0.2s; }
.order-card:nth-child(3) { animation-delay: 0.3s; }
.order-card:nth-child(4) { animation-delay: 0.4s; }

/* تأثير الانزلاق للأزرار */
.btn-primary, .btn-submit {
    background-size: 200% 100%;
    background-position: left;
    transition: background-position 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover, .btn-submit:hover {
    background-position: right;
}

/* جسيمات متحركة في الخلفية */
@keyframes particleFloat1 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) translateX(20px) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes particleFloat2 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(40px) translateX(-30px) rotate(-180deg);
        opacity: 0.5;
    }
}

.decoration-circle {
    animation-timing-function: ease-in-out;
}

.circle-1 {
    animation: particleFloat1 8s ease-in-out infinite;
}

.circle-2 {
    animation: particleFloat2 10s ease-in-out infinite;
    animation-delay: 2s;
}

.circle-3 {
    animation: particleFloat1 12s ease-in-out infinite;
    animation-delay: 4s;
}

/* تأثير التركيز المحسن للإدخالات */
.form-group input:focus, .form-group select:focus {
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* تأثير التحميل للزر */
.btn-primary:disabled::after, .btn-submit:disabled::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* تأثير النجاح المتحرك */
@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 200, 83, 0);
    }
}

.checkmark-circle {
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), successPulse 2s infinite 0.5s;
}

/* تأثير الخطأ المتحرك */
@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.crossmark-circle {
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), errorShake 0.5s 0.5s;
}

/* تأثير الانزلاق السلس للصفحات */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* تحسين التمرير السلس */
html {
    scroll-behavior: smooth;
}

/* تأثير Parallax خفيف للخلفية */
.login-page {
    background-attachment: fixed;
}

/* تحسين الانتقالات العامة */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* تأثير التألق عند التحميل */
@keyframes glow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.nav-logo:hover, .logo-text:hover {
    animation: glow 0.5s ease-in-out;
}

/* تحسين الظلال الديناميكية */
.sidebar-item {
    box-shadow: 0 0 0 rgba(221, 42, 123, 0);
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-item.active {
    box-shadow: 0 4px 20px rgba(221, 42, 123, 0.3);
}

/* تأثير الضغط للبطاقات */
.order-card:active, .method-card:active {
    transform: scale(0.98);
}

/* تنسيق صفحة الطلبات */
.orders-section {
    padding: 20px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.orders-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(221, 42, 123, 0.3);
}

.orders-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.order-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--pink);
}

/* Order ID */
.order-id {
    display: inline-block;
    font-size: 13px;
    color: var(--text-light);
    background: rgba(221, 42, 123, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 8px;
    font-weight: 500;
}

/* Order Info Badge */
.order-info-badge {
    padding: 12px 20px;
    border-radius: 12px;
    margin: 15px 0;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-info-badge.warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.15) 100%);
    color: #f57c00;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.order-info-badge.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(67, 160, 71, 0.15) 100%);
    color: #388e3c;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

/* Progress Bar */
.order-progress {
    margin: 20px 0;
    padding: 15px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--pink);
    border-radius: 20px;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Full Width Order Detail Item */
.order-detail-item.full-width {
    grid-column: 1 / -1;
}

.admin-note {
    background: rgba(221, 42, 123, 0.05);
    padding: 12px 15px;
    border-radius: 10px;
    border-right: 4px solid var(--pink);
    font-style: italic;
    color: var(--text-dark);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.empty-state p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.empty-state .btn-primary {
    display: inline-block;
    width: auto;
    padding: 15px 40px;
}

/* صفحة الإعدادات */
.settings-section {
    padding: 20px;
}

.settings-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.settings-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--pink);
}

.settings-card .section-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--pink);
}

.user-info-display {
    display: grid;
    gap: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.info-label {
    font-weight: 600;
    color: var(--text-dark);
}

.info-value {
    color: var(--pink);
    font-weight: 500;
}

.settings-form {
    margin-top: 20px;
}

.settings-form .form-group {
    margin-bottom: 20px;
}

.settings-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 20px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 2px solid #c3e6cb;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* تحسين أيقونات الحالة */
.order-status {
    position: relative;
    overflow: hidden;
}

.order-status.pending::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

/* تأثيرات خاصة للتفاعلات */
@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.alert {
    animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* تحسين التدرجات */
.btn-primary, .btn-submit {
    background: var(--primary-gradient);
    background-size: 200% 100%;
}

.btn-primary:hover, .btn-submit:hover {
    background: var(--primary-gradient-hover);
}

/* ==================== Admin Panel Styles ==================== */

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

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 40px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 5px 0;
}

.stat-label {
    font-size: 14px;
    color: #636e72;
    margin: 0;
}

/* Admin Section */
.admin-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.btn-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #764ba2;
    transform: translateX(-5px);
}

/* Admin Table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.admin-table thead {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.admin-table th {
    padding: 15px;
    text-align: right;
    font-weight: 600;
    color: #2d3436;
    border-bottom: 2px solid #dee2e6;
}

.admin-table td {
    padding: 15px;
    text-align: right;
    border-bottom: 1px solid #f0f0f0;
    color: #636e72;
}

.admin-table tbody tr {
    transition: all 0.2s ease;
}

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

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.status-pending_approval {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
}

.status-pending {
    background: linear-gradient(135deg, #cce5ff 0%, #b8daff 100%);
    color: #004085;
}

.status-processing {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
}

.status-completed {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.status-cancelled, .status-rejected {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

.empty-message {
    text-align: center;
    color: #95a5a6;
    padding: 40px;
    font-size: 16px;
}

/* Badge for pending count */
.badge {
    display: none;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 10px;
    margin-right: 5px;
    font-weight: 700;
}

/* Admin Order Actions */
.order-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.btn-action {
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-approve {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
}

.btn-approve:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
}

.btn-reject {
    background: linear-gradient(135deg, #d63031 0%, #ff7675 100%);
    color: white;
}

.btn-reject:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(214, 48, 49, 0.3);
}

.btn-cancel {
    background: linear-gradient(135deg, #fdcb6e 0%, #ffeaa7 100%);
    color: #2d3436;
}

.btn-cancel:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(253, 203, 110, 0.3);
}

.btn-view {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-view:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-ban {
    background: linear-gradient(135deg, #e17055 0%, #d63031 100%);
    color: white;
}

.btn-ban:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(225, 112, 85, 0.3);
}

.btn-add-balance {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
}

.btn-add-balance:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
}

/* Search and Filter Bar */
.admin-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Modal for Admin Actions */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #2d3436;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #636e72;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #d63031;
    transform: rotate(90deg);
}

.modal-body {
    margin-bottom: 20px;
}

.modal-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Responsive Admin Tables */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .admin-table th,
    .admin-table td {
        padding: 10px 5px;
    }

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

    .btn-action {
        width: 100%;
    }
}