/**
 * White & Red Theme - Clean Modern Design
 * White backgrounds with red accents throughout
 */

:root {
    /* Primary Colors */
    --primary-red: #f890e7;
    --primary-red-rgb: 248 , 144, 231;
    --primary-red-dark: #000000;
    --primary-red-light: #f890e7;
    --accent-red: #B22222;
    --red-gradient: linear-gradient(135deg,#f890e7 0%, 	#f890e7 100%);
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #F0F2F5;
    --bg-card: #FFFFFF;
    
    /* Text Colors */
    --text-primary: #2C3E50;
    --text-secondary: #495057;
    --text-light: #6C757D;
    --text-on-red: #FFFFFF;
    
    /* Border Colors */
    --border-light: #E5E5E5;
    --border-medium: #D0D0D0;
    --border-red: rgba(220, 20, 60, 0.3);
    
    /* Shadow Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-red: 0 4px 20px rgba(220, 20, 60, 0.2);
}

/* Global Reset for White Theme */
body {
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

/* Admin Dashboard Container */
.admin-dashboard-wrapper {
    background: var(--bg-secondary) !important;
    min-height: 100vh;
    padding: 30px 0;
}

/* Container Backgrounds */
.container,
.main-wrapper,
.content-wrapper {
    background: transparent !important;
}

/* Header Section */
.admin-header {
    background: var(--red-gradient) !important;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-red);
    color: var(--text-on-red) !important;
}

.admin-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-on-red) !important;
    margin: 0;
}

.admin-header .subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-top: 10px;
}

/* Stats Cards */
.stats-row,
.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card,
.stat-card-mini {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.stat-card::before,
.stat-card-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red-gradient);
    border-radius: 15px 15px 0 0;
}

.stat-card:hover,
.stat-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
    border-color: var(--primary-red) !important;
}

.stat-value,
.stat-value-mini {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-red) !important;
    margin: 10px 0;
}

.stat-label,
.stat-label-mini {
    font-size: 0.95rem;
    color: var(--text-secondary) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Filter Section */
.filter-section {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.filter-section h3 {
    color: var(--primary-red) !important;
    font-size: 1.4rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
}

/* Form Controls */
.form-control,
.form-select,
.filter-input,
.filter-select {
    background: var(--bg-primary) !important;
    border: 1px solid var(--border-medium) !important;
    color: var(--text-primary) !important;
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus,
.filter-input:focus,
.filter-select:focus {
    background: var(--bg-primary) !important;
    border-color: var(--primary-red) !important;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1) !important;
    color: var(--text-primary) !important;
    outline: none;
}

/* Labels */
label,
.filter-label {
    
    font-weight: 600;
    margin-bottom: 8px;
}

/* Buttons */
.btn,
button {
    transition: all 0.3s ease;
}

.btn-primary,
.btn-gold,
.btn-red {
    background: var(--red-gradient) !important;
    border: none !important;
    color: var(--text-on-red) !important;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-gold:hover,
.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-secondary {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border-medium) !important;
    color: var(--text-primary) !important;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--bg-tertiary) !important;
    border-color: var(--primary-red) !important;
    color: var(--primary-red) !important;
}

/* Tables */
.table-responsive {
    background: var(--bg-card) !important;
    border-radius: 15px;
    padding: 0;
    margin-top: 30px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.table {
    background: var(--bg-card) !important;
    margin-bottom: 0;
}

.table thead {
    background: var(--bg-secondary) !important;
}

.table thead th {
    background: var(--bg-secondary) !important;
    color: var(--primary-red) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary-red) !important;
    padding: 15px;
}

.table tbody tr {
    background: var(--bg-card) !important;
    border-bottom: 1px solid var(--border-light) !important;
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: var(--bg-secondary) !important;
}

.table tbody td {
    color: var(--text-primary) !important;
    padding: 15px;
    vertical-align: middle;
}

/* Badges */
.badge {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: rgba(220, 20, 60, 0.1) !important;
    color: var(--primary-red) !important;
    border: 1px solid var(--primary-red) !important;
}

.badge-success {
    background: rgba(40, 167, 69, 0.1) !important;
    color: #28a745 !important;
    border: 1px solid #28a745 !important;
}

.badge-warning {
    background: rgba(255, 193, 7, 0.1) !important;
    color: #ffc107 !important;
    border: 1px solid #ffc107 !important;
}

.badge-danger {
    background: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
    border: 1px solid #dc3545 !important;
}

.badge-info {
    background: rgba(23, 162, 184, 0.1) !important;
    color: #17a2b8 !important;
    border: 1px solid #17a2b8 !important;
}

/* Links */
a {
    color: var(--primary-red) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    background: #000000 !important;
    text-decoration: none;
}

/* Navigation */
.nav-link {
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-red) !important;
    background: rgba(220, 20, 60, 0.05);
}

.nav-link.active {
    color: var(--text-on-red) !important;
    background: #0bd3d3 !important;
}

a.backToLobbyBtn:hover {
background: transparent !important;
}

/* Dropdowns */
.dropdown-menu {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light) !important;
    box-shadow: var(--shadow-md);
}

.dropdown-item {
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(220, 20, 60, 0.05) !important;
    color: var(--primary-red) !important;
}

/* Modals */
.modal-content {
    background: var(--bg-card) !important;
    border: none;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background: var(--bg-secondary) !important;
    border-bottom: 1px solid var(--border-light) !important;
}

.modal-body {
    background: var(--bg-card) !important;
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: 1px solid;
}

.alert-info {
    background: rgba(23, 162, 184, 0.1) !important;
    border-color: #17a2b8 !important;
    color: #0c5460 !important;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1) !important;
    border-color: #28a745 !important;
    color: #155724 !important;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1) !important;
    border-color: #ffc107 !important;
    color: #856404 !important;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1) !important;
    border-color: #dc3545 !important;
    color: #721c24 !important;
}

/* Progress Bars */
.progress {
    background: var(--bg-secondary) !important;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background: var(--red-gradient) !important;
}

/* Loading Spinners */
.spinner-border {
    border-color: rgba(220, 20, 60, 0.2) !important;
    border-right-color: var(--primary-red) !important;
}

/* Pagination */
.pagination {
    gap: 5px;
}

.page-link {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light) !important;
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--bg-secondary) !important;
    border-color: var(--primary-red) !important;
    color: var(--primary-red) !important;
}

.page-item.active .page-link {
    background: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    color: var(--text-on-red) !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red-dark);
}

/* Selection */
::selection {
    background: rgba(220, 20, 60, 0.2);
    color: var(--primary-red-dark);
}

/* Icons with Red Theme */
i.fas,
i.far,
i.fab {
    color: inherit;
}

.filter-toggle-mobile i.fas{
	color: 	#f890e7 !important;
}

.text-red,
.icon-red {
    color: var(--primary-red) !important;
}

/* Header/Navigation Bar Override */
.site-header,
.modern-header,
header {
    background: var(--bg-card) !important;
    border-bottom: 2px solid var(--primary-red) !important;
}

/* Contest Specific Styles */
.contest-grid {
    gap: 25px;
    margin-top: 30px;
}

.contest-title {
    color: var(--primary-red) !important;
    font-weight: 700;
}

.contest-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Team Logos and Images */
.team-logo, .bettor-avatar {
    border: 2px solid #0bd3d3 !important;
    border-radius: 50%;
}

/* Game Time Display */
.game-time {
    color: var(--text-secondary) !important;
}

.game-time i {
    color: var(--primary-red) !important;
}

/* Quick Actions */
.quick-actions {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

/* Empty States */
.empty-state {
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 60px 30px;
    text-align: center;
    color: var(--text-light);
}

/* Tooltips */
.tooltip-inner {
    background: var(--primary-red) !important;
    color: var(--text-on-red) !important;
}

/* Footer Styles */
.footer,
.modern-footer {
    background: #000000 !important;
    color: #FFFFFF !important;
    padding: 0;
    border-top: none !important;
    box-shadow: 0 -5px 20px rgba(178, 34, 34, 0.3);
}

.footer-container {
    width: 100%;
    margin: 0 auto;
}

.footer-main {
    padding: 60px 30px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-section {
    color: #FFFFFF !important;
}

.footer-brand .footer-logo {
    margin-bottom: 20px;
}

.footer-brand .footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem;
    margin: 15px 0 25px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50%;
    color: #FFFFFF !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-social-icons a:hover {
    background: #FFFFFF !important;
    color: #f890e7 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-heading {
    color: #FFFFFF !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
}

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

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

.footer-links-list a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #FFFFFF !important;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2) !important;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-disclaimer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 10px 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3) !important;
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem;
    margin: 0;
}

.copyright strong {
    color: #FFFFFF !important;
}

.footer-payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

.footer-payment-icons i {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
}

.footer-payment-icons i:hover {
    color: #FFFFFF !important;
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links-list a:hover {
        transform: none;
    }
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .stats-row,
    .stats-overview {
        grid-template-columns: 1fr;
    }
    
    .filter-section {
        padding: 20px;
    }
    
    .table-responsive {
        padding: 0;
    }
}



.hero-details .contest-begins-time {
	background-color: #f890e7 !important;
}

 .hero-details .contest-status span {
	background: #f890e7 !important;
 }
 
 .location-modal-box {
    border: 2px solid #0bd3d3 !important;
}

.confirmation-popup-box .confirmation-popup-box-footer button {
    background: #f890e7 !important;
    color: #fff;
    border-color: #f890e7 !important;
}

#bettingButton {
    background: #f890e7 !important;
}

.contest-teamvsteam-cell{
    color: #f890e7 !important;
}

.show-all-wagers:hover {
	background: transparent !important;
}

.wager-list-item {
    color: #f890e7;
}

.bettor-intelligence-wrap .widget-title::before {
    color: #f890e7 !important;
}

table.bettor-intelligence tfoot td{
    border-top: 2px solid #f890e7 !important;
}

.bettor-intelligence-wrap .view-all-wagers {
    background: #0bd3d3 !important;
}

table.bettor-intelligence thead tr
 {
    background: linear-gradient(135deg, #f890e7 0%, #0bd3d3 100%) !important;
}


table.bettor-intelligence{
    background: rgba(0, 0, 0, 0.6) !important;
}

table.bettor-intelligence tfoot tr{
    background: linear-gradient(135deg, #f890e7 0%, #0bd3d3 100%) !important;
}

.user-box a.logout-link {
border: 1px solid #f890e7 !important;
}

.user-box a:hover {
    border-left-color: #f890e7 !important;
}

.contest-wrapper-teamvsteam h2.section-header.projections-header{
	    background-color: #0bd3d3 !important;
}

.contest-team-vs-team-details {
    background-color: #f890e7 !important;
}


.contest-status-open-for-betting .contest-teamvsteam-cell:hover, .contest-status-open-for-betting .contest-teamvsteam-cell.contest-status-open-for-betting:hover {
    background-color: 	#0bd3d3 !important;
    color: #fff;
}

.team-vs-team-bet-parley.active, .team-vs-team-bet.active
 {
    background: #f890e7 !important;
    color: #fff !important;
}

.wager-tab .wager-label, .wager-amount-tab .wager-amount-label, .make-a-bet-label
 {
    color: #f890e7 !important;
}

input.submit-bet, input.submit-bet-parlay
 {
    background: #f890e7 ;
 }


.confirmation-popup-box .confirmation-popup-box-header .confirmation-popup-box-title
 {
     color: #f890e7 !important;
}

.confirmation-popup-box .confirmation-popup-box-footer button
Specificity: (0,2,1)
 {
    background: #f890e7 !important;
    color: #fff;
    border-color: #f890e7 !important;
}
