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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1a1d2e 0%, #2d3250 50%, #1a1d2e 100%);
    color: #e8e8e8;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Navbar */
.navbar {
    background: transparent;
    backdrop-filter: blur(10px);
    border: none;
    padding: 18px 0;
    box-shadow: none;
    position: relative;
    z-index: 1000;
}

.brand-text {
    font-size: 1.5em;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav-link {
    color: #9ca3af !important;
    margin: 0 8px;
    padding: 8px 16px !important;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
}

.nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-menu {
    background: rgba(15, 20, 45, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 8px;
    margin-top: 8px;
}

.dropdown-item {
    color: #9ca3af;
    transition: all 0.2s ease;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    
    z-index: 2;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.5em;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.5em;
    color: #9ca3af;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    padding: 15px 40px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 3em;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 700;
}

.feature-card {
    background: rgba(26, 31, 58, 0.7);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(26, 31, 58, 0.9);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-description {
    color: #9ca3af;
    line-height: 1.6;
}

/* Search Container */
.search-container-wrapper {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.search-box {
    background: rgba(26, 31, 58, 0.9);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.1);
}

.search-title {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    font-size: 2em;
    font-weight: 600;
}

.search-form {
    display: flex;
    gap: 10px;
}

.dropdown-container {
    position: relative;
    flex: 1;
}

.search-input {
    width: 100%;
    padding: 15px;
    background: rgba(15, 20, 45, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.search-input::placeholder {
    color: #666;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 20, 45, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.dropdown-item-custom {
    padding: 12px 15px;
    cursor: pointer;
    color: #b0b0b0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.dropdown-item-custom:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.dropdown .dropdown-item {
    padding: 12px 15px;
    cursor: pointer;
    color: #b0b0b0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.search-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
}

/* Footer */
.footer {
    background: rgba(10, 14, 39, 0.98);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 100px;
}

.footer h5 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer p {
    color: #9ca3af;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #6b7280;
}

/* Content Pages */
.content-page {
    min-height: 100vh;
    padding: 120px 0 60px;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.content-card {
    background: rgba(26, 31, 58, 0.7);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    transition: all 0.3s ease;
}

.content-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .search-form {
        flex-direction: column;
    }
}


/* ==================== ADMIN PANEL STYLES ==================== */

/* Admin Form Styles */
.admin-form-container {
    background: rgba(26, 31, 58, 0.8);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.form-label {
    color: #9ca3af;
    font-weight: 500;
    font-size: 0.9em;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control, .form-select, select.form-control {
    background: rgba(15, 20, 45, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #e8e8e8;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

.form-control:focus, .form-select:focus {
    background: rgba(15, 20, 45, 0.8);
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    color: #fff;
    outline: none;
}

.form-control::placeholder {
    color: #6b7280;
}

select.form-control,
select.form-select {
    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='%238b5cf6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
}

select.form-control option,
select.form-select option {
    background: rgba(15, 20, 45, 0.95);
    color: #e8e8e8;
    padding: 10px;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Admin Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
}

.btn-secondary {
    background: rgba(107, 114, 128, 0.2);
    color: #9ca3af;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.btn-secondary:hover {
    background: rgba(107, 114, 128, 0.3);
    color: #fff;
    border-color: rgba(107, 114, 128, 0.5);
}

.btn-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5);
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85em;
}

/* Admin Alerts */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: none;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

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

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-left: 4px solid #10b981;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-left: 4px solid #ef4444;
}

/* Admin Tables */
.table-container {
    background: rgba(26, 31, 58, 0.8);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    overflow-x: auto;
}

.table {
    width: 100%;
    margin-bottom: 0;
    color: #e8e8e8;
    border-collapse: separate;
    border-spacing: 0;
}

.table thead th {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.5px;
    padding: 16px;
    border: none;
    white-space: nowrap;
}

.table thead th:first-child {
    border-top-left-radius: 8px;
}

.table thead th:last-child {
    border-top-right-radius: 8px;
}

.table tbody tr {
    background: rgba(30, 35, 65, 0.7);
    transition: all 0.2s ease;
}

.table tbody tr:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.005);
}

.table tbody td {
    padding: 16px;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
    vertical-align: middle;
}

.table tbody td img {
    border-radius: 8px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.table tbody td img:hover {
    transform: scale(1.1);
    border-color: #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.table-bordered {
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.table-striped tbody tr:nth-of-type(odd) {
    background: rgba(30, 35, 65, 0.8);
}

.table-striped tbody tr:nth-of-type(even) {
    background: rgba(35, 40, 75, 0.6);
}

.badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bg-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.bg-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
}

/* File Input Styling */
input[type="file"].form-control {
    padding: 10px;
    cursor: pointer;
}

input[type="file"].form-control::file-selector-button {
    padding: 8px 16px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

input[type="file"].form-control::file-selector-button:hover {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    transform: translateY(-1px);
}

/* Select2 Dark Theme Override */
.select2-container--default .select2-selection--single {
    background: rgba(15, 20, 45, 0.6) !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
    border-radius: 8px !important;
    height: 46px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #e8e8e8 !important;
    line-height: 44px !important;
    padding-left: 16px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #8b5cf6 transparent transparent transparent !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #8b5cf6 transparent !important;
}

.select2-dropdown {
    background: rgba(15, 20, 45, 0.98) !important;
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
    border-radius: 8px !important;
    backdrop-filter: blur(10px);
}

.select2-results__option {
    background: transparent !important;
    color: #9ca3af !important;
    padding: 12px 16px !important;
}

.select2-results__option--highlighted {
    background: rgba(139, 92, 246, 0.2) !important;
    color: #fff !important;
}

.select2-results__option--selected {
    background: rgba(139, 92, 246, 0.3) !important;
    color: #8b5cf6 !important;
}

.select2-search--dropdown .select2-search__field {
    background: rgba(15, 20, 45, 0.8) !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
    color: #e8e8e8 !important;
    border-radius: 6px !important;
    padding: 8px 12px !important;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #8b5cf6 !important;
    outline: none !important;
}

.select2-container--default .select2-selection--single:focus {
    border-color: #8b5cf6 !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
}

/* Dynamic Row Styles */
.weapon-row, .artifact-row {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Dividers */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    margin: 30px 0;
}

/* Responsive Table */
@media (max-width: 768px) {
    .table-container {
        padding: 15px;
    }
    
    .table {
        font-size: 0.85em;
    }
    
    .table thead th,
    .table tbody td {
        padding: 10px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85em;
    }
}


/* Dashboard Specific Styles */
.dashboard-card {
    background: rgba(26, 31, 58, 0.8);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dashboard-card:hover::before {
    transform: scaleX(1);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.dashboard-card h3 {
    color: #9ca3af;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.dashboard-card .card-value {
    font-size: 2.5em;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

/* Dashboard Content Area */
.content-area h2 {
    color: #8b5cf6;
    font-weight: 600;
    margin-bottom: 15px;
}

.content-area p {
    color: #9ca3af;
    line-height: 1.6;
}


/* Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.login-box {
    background: rgba(26, 31, 58, 0.9);
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.6s ease;
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.login-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.login-header h1 {
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.login-header p {
    color: #9ca3af;
    font-size: 0.95em;
    margin: 0;
}

.login-form {
    margin-bottom: 25px;
}

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

.login-form .w-100 {
    width: 100%;
}

.login-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.login-footer p {
    color: #6b7280;
    font-size: 0.85em;
    margin: 0;
}

@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
    }
    
    .login-header h1 {
        font-size: 1.3em;
    }
}


/* Remove white background from autocomplete */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px rgba(15, 20, 45, 0.6) inset !important;
    -webkit-text-fill-color: #e8e8e8 !important;
    transition: background-color 5000s ease-in-out 0s;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
}


/* Force table body background colors */
.table tbody tr,
.table tbody tr td {
    background: rgba(30, 35, 65, 0.7) !important;
}

.table tbody tr:hover,
.table tbody tr:hover td {
    background: rgba(139, 92, 246, 0.2) !important;
}

.table-striped tbody tr:nth-of-type(odd),
.table-striped tbody tr:nth-of-type(odd) td {
    background: rgba(30, 35, 65, 0.8) !important;
}

.table-striped tbody tr:nth-of-type(even),
.table-striped tbody tr:nth-of-type(even) td {
    background: rgba(35, 40, 75, 0.6) !important;
}

.table-striped tbody tr:nth-of-type(odd):hover,
.table-striped tbody tr:nth-of-type(odd):hover td {
    background: rgba(139, 92, 246, 0.25) !important;
}

.table-striped tbody tr:nth-of-type(even):hover,
.table-striped tbody tr:nth-of-type(even):hover td {
    background: rgba(139, 92, 246, 0.25) !important;
}


/* Force table text to be white and visible */
.table tbody tr td,
.table tbody td,
.table td {
    color: #ffffff !important;
}
