/* =========================================================
   REELS & PLAYLISTS — PRETTIFIED
   - No class renames; safe to replace existing CSS
   - Grouped logically, readable, easy to edit
   ========================================================= */

   :root {
    --brand: var(--color-content, #8B1538);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(139, 21, 56, 0.3);
    --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* =======================
     Layout & Containers
     ======================= */
  
  .explore-container {
    min-height: 100vh;
    padding: 30px;
  }
  
  .explore-content {
    margin: 0 auto;
    max-width: 1400px;
  }
  
  .main-content-wrapper {
    display: flex;
    gap: 20px;
    margin: 0 auto;
    max-width: 1400px;
  }
  
  .reels-container {
    min-height: 100vh;
    padding: 20px;
  }
  
  /* =======================
     Headers
     ======================= */
  
  .explore-header,
  .study-reels-header {
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  
  .explore-title,
  .study-reels-title {
    align-items: center;
    color: var(--brand);
    display: flex;
    gap: 12px;
    margin: 0;
  }
  
  .explore-title {
    font-size: 2rem;
    font-weight: 700;
  }
  
  .study-reels-title {
    font-size: 2rem;
    font-weight: 600;
  }
  
  /* Elevated header variant */
  .explore-header.elevated {
    background: #fff;
    border-bottom: 0;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
  }
  
  /* =======================
     Filters / Search / Tabs
     ======================= */
  
  .explore-filters {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .search-box {
    min-width: 300px;
    position: relative;
    flex: 1;
  }
  
  .search-box input {
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.95rem;
    padding: 12px 45px 12px 20px;
    transition: 0.3s;
    width: 100%;
  }
  
  .search-box input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
    outline: none;
  }
  
  .search-box i {
    color: #999;
    font-size: 1.1rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .filter-group {
    align-items: center;
    display: flex;
    gap: 10px;
  }
  
  .filter-label {
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .filter-select {
    appearance: none;
    background: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-position: right 12px center;
    background-repeat: no-repeat;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 10px 35px 10px 15px;
    transition: 0.3s;
  }
  
  .filter-select:focus {
    border-color: var(--brand);
    outline: none;
  }
  
  .category-tabs {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
  }
  
  .category-tab {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    color: #666;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    transition: 0.3s;
    white-space: nowrap;
  }
  
  .category-tab:hover {
    border-color: var(--brand);
    color: var(--brand);
  }
  
  .category-tab.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
  }
  
  /* =======================
     Results Header / View Toggle
     ======================= */
  
  .results-info {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 5px;
  }
  
  .results-count {
    color: #555;
    font-size: 1.1rem;
    font-weight: 500;
  }
  
  .results-count strong {
    color: var(--brand);
  }
  
  .view-toggle {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 5px;
    padding: 5px;
  }
  
  .view-toggle-btn {
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: #666;
    cursor: pointer;
    font-size: 1rem;
    padding: 8px 15px;
    transition: 0.3s;
  }
  
  .view-toggle-btn.active {
    background: var(--brand);
    color: #fff;
  }
  
  /* =======================
     Buttons (Shared)
     ======================= */
  
  :where(.back-btn, .contribute-btn, .load-more-btn, .profile-btn) {
    align-items: center;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
  }
  
  .back-btn,
  .load-more-btn {
    background: #fff;
    border: 2px solid var(--brand);
    color: var(--brand);
    font-size: 0.95rem;
    padding: 12px 24px;
  }
  
  .back-btn:hover,
  .load-more-btn:hover {
    background: var(--brand);
    box-shadow: var(--shadow-md);
    color: #fff;
    transform: translateY(-2px);
  }
  
  .load-more-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
  }
  
  .contribute-btn {
    background: linear-gradient(135deg, var(--brand) 0%, #6a1028 100%);
    box-shadow: var(--shadow-md);
    color: #fff;
    padding: 10px 24px;
  }
  
  .contribute-btn:hover {
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
    transform: translateY(-2px);
  }
  
  .profile-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    padding: 12px 15px;
  }
  
  .profile-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
  
  /* =======================
     Grids
     ======================= */
  
  .shorts-explore-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    margin-bottom: 30px;
  }
  
  .playlists-explore-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    margin-bottom: 30px;
  }
  
  .shorts-grid,
  .playlist-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding-bottom: 10px;
  }

  .shorts-grid::-webkit-scrollbar,
  .playlist-grid::-webkit-scrollbar {
    height: 8px;
  }
  
  .shorts-grid::-webkit-scrollbar-track,
  .playlist-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  .shorts-grid::-webkit-scrollbar-thumb,
  .playlist-grid::-webkit-scrollbar-thumb {
    background: var(--color-content, #8B1538);
    border-radius: 10px;
  }
  
  .shorts-grid::-webkit-scrollbar-thumb:hover,
  .playlist-grid::-webkit-scrollbar-thumb:hover {
    background: #6a1028;
  }
  
  /* =======================
     Cards — Shorts & Playlists
     ======================= */
  
  .short-card,
  .playlist-card {
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .short-card:hover,
  .playlist-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
  }
  
  .short-card {
    aspect-ratio: 12 / 16;
    height: 230px;
    width: 150px;
    flex-shrink: 0;
  }
  
  .playlist-card {
    aspect-ratio: 12 / 16;
    height: 230px;
    width: 150px;
    flex-shrink: 0;
  }
  
  .short-thumbnail,
  .playlist-thumbnail {
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
    width: 100%;
  }
  
  .short-card:hover .short-thumbnail,
  .playlist-card:hover .playlist-thumbnail {
    transform: scale(1.05);
  }
  
  .short-overlay,
  .playlist-overlay {
    bottom: 0;
    color: #fff;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 2;
  }
  
  .short-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.4) 60%,
      transparent 100%
    );
    padding: 12px 10px 10px;
  }
  
  .playlist-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.5) 70%,
      transparent 100%
    );
    padding: 15px 12px 12px;
  }
  
  .short-badge {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    color: #333;
    font-size: 0.7rem;
    font-weight: 700;
    left: 8px;
    padding: 4px 10px;
    position: absolute;
    top: 8px;
    z-index: 2;
  }
  
  .short-views {
    align-items: center;
    display: flex;
    font-size: 0.8rem;
    font-weight: 500;
    gap: 5px;
  }
  
  .short-views i {
    font-size: 0.85rem;
  }
  
  .playlist-title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    font-size: 0.95rem;
    font-weight: 600;
    line-clamp: 2;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  /* Edit buttons (shared) */
  
  .short-edit-btn,
  .playlist-edit-btn {
    align-items: center;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 36px;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 10px;
    transition: 0.3s ease;
    width: 36px;
    z-index: 10;
  }
  
  .short-edit-btn:hover,
  .playlist-edit-btn:hover {
    background: var(--brand);
    transform: scale(1.1);
  }
  
  .short-edit-btn i,
  .playlist-edit-btn i {
    font-size: 16px;
  }
  
  /* =======================
     Play Icon (shared)
     ======================= */
  
  .play-icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    height: 50px;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
    width: 50px;
    z-index: 2;
    left: 50%;
  }
  
  .short-card:hover .play-icon,
  .playlist-card:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .play-icon i {
    color: var(--brand);
    font-size: 1.5rem;
    margin-left: 3px;
  }
  
  /* =======================
     Lists / States
     ======================= */
  
  .load-more-container {
    margin: 40px 0 20px;
    text-align: center;
  }
  
  .loading-spinner {
    grid-column: 1 / -1;
    padding: 60px 20px;
    text-align: center;
  }
  
  .spinner-border {
    border-color: var(--brand);
    border-right-color: transparent;
    border-width: 0.3em;
    height: 3rem;
    width: 3rem;
  }
  
  .loading-text {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 15px;
  }
  
  .no-results {
    grid-column: 1 / -1;
    padding: 80px 20px;
    text-align: center;
  }
  
  .no-results i {
    color: #ccc;
    font-size: 4rem;
    margin-bottom: 20px;
  }
  
  .no-results h3 {
    color: #666;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .no-results p {
    color: #999;
    font-size: 1rem;
  }
  
  .empty-state {
    color: #999;
    padding: 60px 20px;
    text-align: center;
  }
  
  .empty-state i {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.3;
  }
  
  .empty-state p {
    font-size: 1.1rem;
    margin: 0;
  }
  
  /* =======================
     Profile Sidebar & Library
     ======================= */
  
  .profile-sidebar {
    flex-shrink: 0;
    width: 300px;
  }
  
  .profile-card {
    background: linear-gradient(135deg, #161e29 0%, #161e29 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
    height: 90vh;
    margin-bottom: 20px;
    padding: 30px 20px;
    text-align: center;
    width: calc(100% + 2rem);
  }
  
  .profile-image-wrapper {
    border: 10px solid transparent;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    height: 120px;
    margin: 0 auto 15px;
    overflow: hidden;
    width: 120px;
  }
  
  .profile-image {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  
  .profile-label {
    font-size: 0.85rem;
    margin-bottom: 5px;
    opacity: 0.9;
  }
  
  .profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .profile-playlists {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .profile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  
  .library-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-top: 20px;
    padding: 15px;
  }
  
  .library-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .library-item,
  .library-item-card {
    align-items: center;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    transition: background-color 0.3s ease;
  }
  
  .library-item {
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    margin-bottom: 10px;
    padding: 10px;
  }
  
  .library-item:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .library-thumbnail {
    border-radius: 8px;
    height: 50px;
    object-fit: cover;
    width: 50px;
  }
  
  .library-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  
  .library-item-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
  }
  
  .library-item-card:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .library-item-thumbnail {
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    height: 60px;
    overflow: hidden;
    width: 60px;
  }
  
  .library-item-thumbnail img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    width: 100%;
  }
  
  .library-item-thumbnail:hover img {
    transform: scale(1.1);
  }
  
  .library-item-title {
    color: #fff;
    cursor: pointer;
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .library-item-title:hover {
    color: #4fc3f7;
  }
  
  .library-item-edit {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    flex-shrink: 0;
    font-size: 0.85rem;
    padding: 8px 12px;
    transition: 0.3s ease;
  }
  
  .library-item-edit:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #4fc3f7;
  }
  
  /* =======================
     SweetAlert2 (Consolidated)
     ======================= */
  
  .swal-popup,
  .swal2-popup {
    border-radius: 15px !important;
    font-family: "Poppins", sans-serif;
  }
  
  .swal2-title {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
  }
  
  .swal2-html-container {
    color: #666;
    font-size: 1rem;
  }
  
  .swal2-confirm.btn-success,
  .swal2-confirm.btn-primary,
  .swal2-confirm.btn-danger,
  .swal2-confirm.btn-warning {
    border: none !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: 10px 30px !important;
    transition: 0.3s !important;
  }
  
  .swal2-confirm.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%) !important;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3) !important;
  }
  
  .swal2-confirm.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, #6a1028 100%) !important;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3) !important;
  }
  
  .swal2-confirm.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3) !important;
  }
  
  .swal2-confirm.btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%) !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3) !important;
    color: #333 !important;
  }
  
  .swal2-confirm.btn-success:hover {
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4) !important;
    transform: translateY(-2px) !important;
  }
  
  .swal2-confirm.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4) !important;
    transform: translateY(-2px) !important;
  }
  
  .swal2-confirm.btn-danger:hover {
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4) !important;
    transform: translateY(-2px) !important;
  }
  
  .swal2-confirm.btn-warning:hover {
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4) !important;
    transform: translateY(-2px) !important;
  }
  
  .swal2-icon.swal2-success [class^="swal2-success-line"] {
    background-color: #28a745 !important;
  }
  
  .swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(40, 167, 69, 0.3) !important;
  }
  
  .swal2-icon.swal2-warning {
    border-color: #ffc107 !important;
    color: #ffc107 !important;
  }
  
  /* =======================
     Sections
     ======================= */
  
  .section-header {
    align-items: center;
    border-bottom: 2px solid var(--brand);
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  
  .section-title {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
  }
  
  .suggest-topic {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
  }
  
  .playlist-section,
  .shorts-section {
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    padding: 25px;
  }
  
  /* =======================
     Carousel Buttons
     ======================= */
  
  .circle-reels-button {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3rem;
    cursor: pointer;
    position: absolute;
    top: 35%;
    z-index: 10;
  }
  
  .reverse {
    transform: rotate(180deg);
  }
  
  .button-left {
    left: 0;
  }
  
  .button-right {
    right: 0;
  }
  
  /* =======================
     Responsive
     ======================= */
  
  @media (max-width: 992px) {
    .main-content-wrapper {
      flex-direction: column;
    }
  
    .profile-sidebar {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .explore-container {
      padding: 15px;
    }
  
    .explore-content {
      padding: 20px;
    }
  
    .explore-header {
      align-items: flex-start;
      flex-direction: column;
    }
  
    .explore-title,
    .study-reels-title {
      font-size: 1.6rem;
    }
  
    .explore-filters {
      align-items: stretch;
      flex-direction: column;
    }
  
    .search-box {
      min-width: auto;
    }
  
    .shorts-explore-grid {
      gap: 15px;
      grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }
  
    .playlists-explore-grid {
      gap: 15px;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
  
    .playlist-card,
    .short-card {
      border-radius: 10px;
    }
  
    .play-icon {
      height: 40px;
      width: 40px;
    }
  
    .play-icon i {
      font-size: 1.2rem;
    }
  
    .short-badge {
      font-size: 0.65rem;
      padding: 3px 8px;
    }
  
    .short-overlay {
      padding: 10px 8px 8px;
    }
  
    .short-views {
      font-size: 0.75rem;
    }
  
    .playlist-title {
      font-size: 0.85rem;
      padding: 10px 8px 8px;
    }
  }
  
  @media (max-width: 576px) {
    .shorts-grid {
      gap: 15px;
      grid-template-columns: repeat(2, 1fr);
    }
  
    .study-reels-title {
      font-size: 1.5rem;
    }
  
    .section-title {
      font-size: 1.2rem;
    }
  }
  

  .manage-container {
    padding: 20px;
}

.filters-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.filter-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.filter-group input,
.filter-group select {
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--color-content, #8B1538);
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.btn-filter {
    background: linear-gradient(135deg, var(--color-content, #8B1538) 0%, #6a1028 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
}

.btn-clear {
    background: white;
    color: var(--color-content, #8B1538);
    border: 2px solid var(--color-content, #8B1538);
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    background: var(--color-content, #8B1538);
    color: white;
}

.table-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.table-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-content, #8B1538);
    margin: 0;
}

.results-count {
    color: #666;
    font-size: 0.95rem;
}

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

.shorts-table thead {
    background: #f8f9fa;
}

.shorts-table th {
    padding: 15px 10px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #dee2e6;
}

.shorts-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
}

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

.thumbnail-preview {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

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

.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.action-btns {
    display: flex;
    gap: 5px;
}

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

.btn-approve {
    background: #28a745;
    color: white;
}

.btn-approve:hover {
    background: #218838;
}

.btn-reject {
    background: #dc3545;
    color: white;
}

.btn-reject:hover {
    background: #c82333;
}

.btn-view {
    background: #007bff;
    color: white;
}

.btn-view:hover {
    background: #0056b3;
}

.btn-edit {
    background: #ffc107;
    color: #333;
}

.btn-edit:hover {
    background: #e0a800;
}

.load-more-container {
    text-align: center;
    margin-top: 20px;
}

.btn-load-more {
    background: white;
    color: var(--color-content, #8B1538);
    border: 2px solid var(--color-content, #8B1538);
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: var(--color-content, #8B1538);
    color: white;
}

.btn-load-more:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.loading-spinner {
    text-align: center;
    padding: 40px;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
    border-color: var(--color-content, #8B1538);
    border-right-color: transparent;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.3;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 300px;
}