
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 14px;
}

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

.header {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-radius: 20px;
    padding: 20px 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 127, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(45deg, #00ff7f, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 127, 0.5);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.coins {
    background: linear-gradient(135deg, #00ff7f, #00ffff);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.nav-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab {
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab.active {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.2), rgba(0, 255, 255, 0.2));
    border-color: #00ff7f;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.3);
    transform: translateY(-2px);
}

.tab:hover:not(.active) {
    background: rgba(0, 255, 127, 0.1);
    transform: translateY(-1px);
}

.tab-content {
    display: none;
}

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

.card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(0, 255, 127, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 127, 0.2);
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.channel-item:hover {
    background: rgba(0, 255, 127, 0.1);
    border-color: #00ff7f;
    transform: translateX(10px);
}

.channel-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff7f, #00ffff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.4);
}

.channel-info {
    flex: 1;
}

.channel-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.channel-subs {
    color: #00ff7f;
    font-size: 14px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff7f, #00ffff);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 255, 127, 0.6);
}

.btn-secondary {
    background: rgba(0, 255, 127, 0.2);
    color: #00ff7f;
    border: 1px solid #00ff7f;
}

.btn-secondary:hover {
    background: rgba(0, 255, 127, 0.3);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.4);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(255, 71, 87, 0.6);
}

.subscriber-info {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0;
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.sub-count {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 255, 127, 0.3);
    border-radius: 50%;
    border-top-color: #00ff7f;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-verify {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

.btn-verify:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.6);
}

.btn-verify:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #00ff7f;
}

.form-input {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 15px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #00ff7f;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.3);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-select {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 15px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.form-select option {
    background: #1a1a2e;
    color: #fff;
}

.coin-package {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.coin-package:hover {
    background: rgba(0, 255, 127, 0.1);
    border-color: #00ff7f;
}

.package-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.coin-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff7f, #00ffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.4);
}

.package-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.package-price {
    color: #00ff7f;
    font-weight: 600;
}

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

.stat-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 127, 0.2);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #00ff7f;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #00ff7f, #00ffff);
    color: #000;
    border-radius: 15px;
    font-weight: 600;
    transform: translateX(400px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 0 25px rgba(0, 255, 127, 0.5);
}

.notification.show {
    transform: translateX(0);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #00ff7f;
    margin-bottom: 10px;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
}

.auth-switch a {
    color: #00ff7f;
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.priority-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.priority-stop { background: #666; color: #fff; }
.priority-medium { background: #ffa726; color: #000; }
.priority-fast { background: #42a5f5; color: #fff; }
.priority-high { background: #ef5350; color: #fff; }

.admin-section {
    display: none;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.admin-tab {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 13px;
}

.admin-tab.active {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.2), rgba(0, 255, 255, 0.2));
    border-color: #00ff7f;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.3);
    transform: translateY(-2px);
}

.admin-tab:hover:not(.active) {
    background: rgba(0, 255, 127, 0.1);
    transform: translateY(-1px);
}

.admin-content {
    display: none;
}

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

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.order-item:hover {
    background: rgba(0, 255, 127, 0.1);
    border-color: #00ff7f;
}

.order-info h4 {
    color: #00ff7f;
    margin-bottom: 10px;
    font-size: 18px;
}

.order-info p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.8);
}

.order-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.package-form {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th,
.table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 255, 127, 0.2);
}

.table th {
    background: rgba(0, 255, 127, 0.1);
    color: #00ff7f;
    font-weight: 600;
}

.table tr:hover {
    background: rgba(0, 255, 127, 0.05);
}

.status-pending { color: #ffa726; }
.status-approved { color: #4caf50; }
.status-rejected { color: #f44336; }
.status-active { color: #42a5f5; }
.status-completed { color: #4caf50; }
.status-cancelled { color: #f44336; }

.search-box {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
}

/* Mobile First Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .header {
        padding: 15px 20px;
        margin-bottom: 20px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .user-info {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .coins {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .nav-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .tab {
        padding: 10px 16px;
        text-align: center;
        font-size: 13px;
    }
    
    .admin-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .admin-tab {
        padding: 8px 16px;
        text-align: center;
        font-size: 12px;
    }
    
    .card {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 15px;
    }
    
    .channel-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }
    
    .channel-avatar {
        width: 50px;
        height: 50px;
        align-self: center;
    }
    
    .channel-info {
        text-align: center;
    }
    
    .channel-name {
        font-size: 16px;
    }
    
    .coin-package {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px;
    }
    
    .package-info {
        flex-direction: column;
        text-align: center;
    }
    
    .coin-icon {
        width: 40px;
        height: 40px;
        align-self: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .order-item {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        text-align: center;
    }
    
    .order-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .order-actions .btn {
        width: 100%;
    }
    
    .modal-content {
        width: 95%;
        padding: 15px;
        max-height: 90vh;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .form-input, .form-select {
        padding: 12px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .table {
        font-size: 12px;
    }
    
    .table th, .table td {
        padding: 8px 4px;
    }
    
    .package-form {
        padding: 15px;
    }
    
    .package-form > div {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    .referral-code-display {
        font-size: 20px;
        padding: 12px;
    }
    
    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
    }
    
    /* Admin Section Styles */
    .admin-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
        border-bottom: 2px solid rgba(0, 255, 127, 0.2);
        padding-bottom: 15px;
    }
    
    .admin-tab {
        padding: 10px 15px;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(0, 255, 127, 0.2);
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.8);
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 14px;
        font-weight: 500;
    }
    
    .admin-tab:hover {
        background: rgba(0, 255, 127, 0.1);
        border-color: #00ff7f;
        color: #00ff7f;
    }
    
    .admin-tab.active {
        background: rgba(0, 255, 127, 0.2);
        border-color: #00ff7f;
        color: #00ff7f;
        font-weight: 600;
    }
    
    .admin-content {
        display: none;
    }
    
    .admin-content.active {
        display: block;
    }
    
    .admin-section {
        display: none;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        width: auto;
        font-size: 14px;
        padding: 12px 15px;
    }
}

/* Tablet Portrait */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .admin-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .channel-item {
        flex-direction: row;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .coin-package {
        flex-direction: row;
        gap: 15px;
    }
    
    .modal-content {
        width: 90%;
        padding: 20px;
    }
    
    .package-form > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .form-input, .form-select {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .order-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .order-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Tablet Landscape and Small Desktop */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .package-form > div {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .modal-content {
        width: 80%;
        max-width: 600px;
    }
}

/* Large Desktop */
@media (min-width: 1025px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .package-form > div {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Smooth transitions to prevent blinking */
* {
    transition: all 0.2s ease;
}

.tab-content, .admin-content {
    transition: opacity 0.2s ease;
}

.tab-content.active, .admin-content.active {
    opacity: 1;
}

.tab-content:not(.active), .admin-content:not(.active) {
    opacity: 0;
}

/* Fix for table overflow on mobile */
@media (max-width: 768px) {
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table {
        min-width: 600px;
        white-space: nowrap;
    }
    
    .table th, .table td {
        min-width: 80px;
    }
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .tab, .admin-tab {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Prevent text selection on interactive elements */
.btn, .tab, .admin-tab, .coin-package, .channel-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Fix modal positioning on mobile */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
}

/* Notification Styles */
.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.notification-item.unread {
    border-color: #00ff7f;
    background: rgba(0, 255, 127, 0.1);
}

.notification-item:hover {
    background: rgba(0, 255, 127, 0.1);
    border-color: #00ff7f;
}

.notification-content h4 {
    color: #00ff7f;
    margin-bottom: 10px;
    font-size: 18px;
}

.notification-content p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.9);
}

.notification-content small {
    color: rgba(255, 255, 255, 0.6);
}

.read-status {
    color: #4caf50;
    font-weight: 600;
}

/* Support Ticket Styles */
.ticket-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ticket-item:hover {
    background: rgba(0, 255, 127, 0.1);
    border-color: #00ff7f;
}

.ticket-info {
    flex: 1;
}

.ticket-info h4 {
    color: #00ff7f;
    margin-bottom: 10px;
    font-size: 18px;
}

.ticket-info p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.ticket-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 20px;
}

.admin-reply {
    background: rgba(0, 255, 127, 0.1);
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    border-left: 3px solid #00ff7f;
}

.status-open {
    color: #ffa726;
    font-weight: 600;
}

.status-in-progress {
    color: #42a5f5;
    font-weight: 600;
}

.status-resolved {
    color: #4caf50;
    font-weight: 600;
}

.status-closed {
    color: #666;
    font-weight: 600;
}

/* Form textarea */
.form-input[rows] {
    resize: vertical;
    min-height: 100px;
}

/* Improve readability on small screens */
@media (max-width: 480px) {
    h2 {
        font-size: 20px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    h4 {
        font-size: 16px;
    }
    
    p, .order-info p {
        font-size: 14px;
        line-height: 1.5;
    }

    .notification-item,
    .ticket-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .ticket-actions {
        flex-direction: row;
        justify-content: center;
        margin-left: 0;
        width: 100%;
    }

    .notification-actions {
        width: 100%;
    }
}
.order-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.order-item:hover {
    border-color: #00ff7f;
    transform: translateY(-2px);
}

.order-info h4 {
    color: #00ff7f;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Referral System Styles */
.referral-code-display {
    background: linear-gradient(135deg, #00ff7f, #00ffff);
    color: #000;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.4);
}

.priority-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

.priority-stop {
    background: rgba(128, 128, 128, 0.2);
    color: #999;
}

.priority-medium {
    background: rgba(255, 167, 38, 0.2);
    color: #ffa726;
}

.priority-fast {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.priority-high {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

/* Load More Button */
#loadMoreChannels {
    background: rgba(0, 255, 127, 0.2);
    border: 2px solid #00ff7f;
    color: #00ff7f;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

#loadMoreChannels:hover {
    background: rgba(0, 255, 127, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 255, 127, 0.4);
}

/* Block status styles */
.status-blocked {
    color: #f44336 !important;
    font-weight: 600;
}

.status-unblocked {
    color: #4caf50 !important;
    font-weight: 600;
}

/* YouTube thumbnail styles */
.channel-avatar img {
    border: 2px solid #00ff7f;
}

.order-info p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.order-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.status-completed {
    color: #00ff7f;
    font-weight: bold;
}

.status-active {
    color: #00ffff;
    font-weight: bold;
}

.status-cancelled {
    color: #ff6b6b;
    font-weight: bold;
}

.status-pending {
    color: #ffd93d;
    font-weight: bold;
}

.status-approved {
    color: #00ff7f;
    font-weight: bold;
}

.status-rejected {
    color: #ff6b6b;
    font-weight: bold;
}

.order-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

.progress-bar {
    background: rgba(0, 0, 0, 0.3);
    height: 10px;
    border-radius: 5px;
    margin: 10px 0;
    overflow: hidden;
}

.progress-bar div {
    background: linear-gradient(90deg, #00ff7f, #00ffff);
    height: 100%;
    border-radius: 5px;
    transition: width 0.3s ease;
}
