/* ========================================
   ADMIN PANEL PREMIUM STYLES
======================================== */

/* Admin Background */
.admin-background {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(20, 20, 20, 0.98) 50%, 
        rgba(0, 0, 0, 0.95) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.admin-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: admin-bg-pulse 8s ease-in-out infinite;
}

@keyframes admin-bg-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Admin Container */
.admin-container {
    position: relative;
    z-index: 10;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Admin Header */
.admin-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.admin-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc143c, #a855f7, #22c55e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.3);
    animation: admin-title-glow 3s ease-in-out infinite;
}

@keyframes admin-title-glow {
    0%, 100% { text-shadow: 0 0 30px rgba(220, 20, 60, 0.3); }
    50% { text-shadow: 0 0 50px rgba(168, 85, 247, 0.5); }
}

.admin-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Admin Stats Cards */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    margin-top: 7rem;
}

.admin-stat-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.admin-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        transparent 50%);
    pointer-events: none;
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 20, 60, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(220, 20, 60, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.admin-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.admin-stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 50%);
    pointer-events: none;
}

.admin-stat-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.admin-stat-icon.green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.admin-stat-icon.purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

.admin-stat-icon.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.admin-stat-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.admin-stat-content {
    position: relative;
    z-index: 2;
}

.admin-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-stat-value {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Admin Tables */
.admin-table-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.admin-table-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03) 0%, 
        transparent 50%);
    pointer-events: none;
}

.admin-table-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
    z-index: 2;
}

.admin-table th {
    background: rgba(220, 20, 60, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid rgba(220, 20, 60, 0.3);
}

.admin-table td {
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.admin-table tr:hover td {
    background: rgba(220, 20, 60, 0.05);
    color: white;
}

/* Admin Status Badges */
.admin-status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.admin-status-badge.completed {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.admin-status-badge.pending {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.admin-status-badge.failed {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.admin-status-badge.cancelled {
    background: rgba(107, 114, 128, 0.2);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

/* Admin Buttons */
.admin-btn {
    background: linear-gradient(135deg, #dc143c, #b91c3c);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s ease;
}

.admin-btn:hover::before {
    left: 100%;
}

.admin-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 
        0 10px 20px rgba(220, 20, 60, 0.3),
        0 0 0 1px rgba(220, 20, 60, 0.2);
}

.admin-btn.secondary {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.admin-btn.secondary:hover {
    box-shadow: 
        0 10px 20px rgba(107, 114, 128, 0.3),
        0 0 0 1px rgba(107, 114, 128, 0.2);
}

.admin-btn.success {
    background: linear-gradient(135deg, #dc143c, #b91c3c);
}

.admin-btn.success:hover {
    box-shadow: 
        0 10px 20px rgba(220, 20, 60, 0.3),
        0 0 0 1px rgba(220, 20, 60, 0.2);
}

/* Admin Forms */
.admin-form-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.admin-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03) 0%, 
        transparent 50%);
    pointer-events: none;
}

.admin-form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.admin-form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.admin-form-input:focus {
    outline: none;
    border-color: rgba(220, 20, 60, 0.5);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 
        0 0 0 3px rgba(220, 20, 60, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.admin-form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Admin Navigation */
.admin-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.admin-nav-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(220, 20, 60, 0.1), 
        transparent);
    transition: left 0.3s ease;
}

.admin-nav-item:hover::before {
    left: 100%;
}

.admin-nav-item:hover {
    border-color: rgba(220, 20, 60, 0.3);
    color: white;
    transform: translateY(-2px);
}

.admin-nav-item.active {
    background: rgba(220, 20, 60, 0.2);
    border-color: rgba(220, 20, 60, 0.4);
    color: #dc143c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .admin-container {
        padding: 1rem;
    }
    
    .admin-title {
        font-size: 2rem;
    }
    
    .admin-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .admin-table-container {
        padding: 1rem;
        overflow-x: auto;
    }
    
    .admin-table {
        min-width: 600px;
    }
    
    .admin-nav {
        flex-direction: column;
    }
}

/* ADMIN PACKAGES PAGE STYLES */
.admin-packages-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    margin-top: 6rem;
}

.admin-packages-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.admin-packages-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.admin-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-message.success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.admin-message.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.admin-message-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.admin-message-text {
    font-weight: 500;
    font-size: 0.95rem;
}

.admin-packages-table-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.admin-packages-table-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.admin-packages-table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
    z-index: 2;
}

.admin-packages-table th {
    background: rgba(220, 20, 60, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid rgba(220, 20, 60, 0.3);
}

.admin-packages-table td {
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.admin-packages-table tr:hover td {
    background: rgba(220, 20, 60, 0.05);
    color: white;
}

.admin-package-name {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.admin-package-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.admin-package-status {
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.admin-package-status.active {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.admin-package-status.inactive {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.admin-package-popular {
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.admin-package-popular.yes {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.admin-package-popular.no {
    background: rgba(107, 114, 128, 0.2);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.admin-package-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.admin-package-action {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-package-action.edit {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.admin-package-action.edit:hover {
    background: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    transform: translateY(-1px);
}

.admin-package-action.delete {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.admin-package-action.delete:hover {
    background: rgba(239, 68, 68, 0.3);
    color: #f87171;
    transform: translateY(-1px);
}

.admin-package-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.3s ease;
}

.admin-package-action:hover::before {
    left: 100%;
}

.admin-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.admin-back-link:hover {
    color: white;
    transform: translateX(-5px);
}

.admin-back-link::before {
    content: '←';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.admin-back-link:hover::before {
    transform: translateX(-3px);
}

@media (max-width: 768px) {
    .admin-packages-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .admin-packages-title {
        font-size: 2rem;
    }
    
    .admin-packages-table-container {
        padding: 1rem;
        overflow-x: auto;
    }
    
    .admin-packages-table {
        min-width: 700px;
    }
    
    .admin-package-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ADMIN PACKAGES CREATE PAGE STYLES */
.admin-create-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.admin-create-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.admin-create-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.admin-create-form-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 7rem;
}

.admin-create-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.admin-create-form {
    position: relative;
    z-index: 2;
}

.admin-create-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-create-form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.admin-create-form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-create-form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.admin-create-form-input:focus {
    outline: none;
    border-color: rgba(220, 20, 60, 0.5);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.admin-create-form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.admin-create-form-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 100px;
}

.admin-create-form-textarea:focus {
    outline: none;
    border-color: rgba(220, 20, 60, 0.5);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.admin-create-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.admin-create-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-create-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.admin-create-checkbox {
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.admin-create-checkbox:checked {
    background: rgba(220, 20, 60, 0.8);
    border-color: rgba(220, 20, 60, 1);
}

.admin-create-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.admin-create-checkbox-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
}

.admin-create-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.admin-create-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.admin-create-btn.cancel {
    background: rgba(107, 114, 128, 0.2);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.admin-create-btn.cancel:hover {
    background: rgba(107, 114, 128, 0.3);
    color: white;
    transform: translateY(-2px);
}

.admin-create-btn.submit {
    background: linear-gradient(135deg, #dc143c, #b91c3c);
    color: white;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.admin-create-btn.submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.3), 0 0 0 1px rgba(220, 20, 60, 0.2);
}

.admin-create-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.admin-create-btn:hover::before {
    left: 100%;
}

.admin-create-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .admin-create-title {
        font-size: 2rem;
    }
    
    .admin-create-form-container {
        padding: 1rem;
    }
    
    .admin-create-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .admin-create-checkbox-group {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .admin-create-form-actions {
        flex-direction: column;
    }
    
    .admin-create-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ADMIN TRANSACTIONS PAGE STYLES */
.admin-pagination {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.admin-pagination .pagination {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.admin-pagination .pagination li {
    display: flex;
}

.admin-pagination .pagination a,
.admin-pagination .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 40px;
}

.admin-pagination .pagination a:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: rgba(220, 20, 60, 0.3);
    color: white;
    transform: translateY(-1px);
}

.admin-pagination .pagination .active span {
    background: rgba(220, 20, 60, 0.8);
    border-color: rgba(220, 20, 60, 1);
    color: white;
}

.admin-pagination .pagination .disabled span {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .admin-pagination .pagination {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .admin-pagination .pagination a,
    .admin-pagination .pagination span {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        min-width: 35px;
    }
}

