/* Base Styles & Variables */
:root {
    --primary-bg: #0F172A;
    --secondary-bg: #1E293B;
    --accent-color: #3B82F6;
    --text-primary: #E2E8F0;
    --text-secondary: #94A3B8;
    --success-color: #2ecc71;
    --pending-color: #f1c40f;
    --error-color: #e74c3c;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--primary-bg);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Banner/Header Styles */
.banner {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    padding: 2rem;
    border-radius: 0 0 25px 25px;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
    animation: slideDown 0.5s ease-out;
}

.banner h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

/* Controls Section */
.controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 0.9rem;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.filter-box select {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    cursor: pointer;
}

/* Table Styles */
.table-container {
    background: var(--secondary-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    animation: fadeIn 0.5s ease-out;
}

.table-header {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr 1fr 1fr 1fr;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
}

.table-row {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr 1fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-speed) ease;
    animation: slideIn 0.3s ease-out forwards;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

/* Status Pills */
.status-pill {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    width: fit-content;
    transition: all var(--transition-speed) ease;
}

.status-completed {
    background: rgba(46, 204, 113, 0.15);
    color: var(--success-color);
}

.status-pending {
    background: rgba(241, 196, 15, 0.15);
    color: var(--pending-color);
}

/* Loading States */
.skeleton-loader {
    padding: 1rem;
}

.skeleton-row {
    height: 40px;
    background: linear-gradient(90deg, 
        var(--secondary-bg) 25%,
        rgba(255, 255, 255, 0.05) 50%,
        var(--secondary-bg) 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.loading-spinner {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    flex-direction: column;
    gap: 1rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--secondary-bg);
    border-radius: 0 0 15px 15px;
}

.page-btn {
    background: var(--accent-color);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.page-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.toast {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    background: var(--secondary-bg);
    color: var(--text-primary);
    box-shadow: var(--card-shadow);
    animation: slideIn 0.3s ease-out;
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes loading {
    to { background-position: -200% 0; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container { padding: 10px; }
    
    .table-container {
        margin: 0 -10px;
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .table-header { display: none; }
    
    .table-row {
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.8rem;
    }
    
    .table-row span {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .table-row span::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-secondary);
    }
    
    .controls {
        flex-direction: column;
    }
    
    .status-pill {
        margin-left: auto;
    }
}
.faq-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
  }

  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #64ffda, #00bfff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .faq-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
  }

  .faq-header h3 {
    font-size: 1.1rem;
    color: #64ffda;
    margin: 0;
  }

  .faq-icon {
    color: #64ffda;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }

  .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-item.active .faq-content {
    max-height: 200px;
    padding: 1.5rem;
  }

  .faq-content p {
    margin: 0;
    color: #8892b0;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .faq-section {
      padding: 3rem 1rem;
    }

    .section-title {
      font-size: 1.75rem;
    }

    .faq-header h3 {
      font-size: 1rem;
    }
  }