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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.app-container {
    width: 100%;
    max-width: 400px;
    background-color: #ffffff;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
}

.logo-container img {
    max-width: 150px;
    height: auto;
}

.page-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #0A2558;
}

.form-control::placeholder {
    color: #7A6F9B;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4A3A75;
    font-size: 18px;
}

.forgot-link {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0A2558;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background-color: #0A2558;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0d2f70;
}

.switch-page-text {
    text-align: center;
    margin-top: 30px;
    color: #4A3A75;
    font-size: 14px;
    font-weight: 500;
}

.emoji-pointer {
    font-size: 20px;
    display: block;
    margin: 5px auto 15px auto;
}

.btn-secondary {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
    padding: 12px;
    background-color: #0A2558;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #0d2f70;
}

/* Dashboard Styles */
.dashboard-body {
    background-color: #f5f5f5;
    display: block;
    min-height: 100vh;
}

.top-nav {
    background-color: #0A2558;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-icon {
    font-size: 24px;
    background: white;
    color: #0A2558;
    padding: 8px 10px;
    border-radius: 50%;
    cursor: pointer;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 700;
    font-size: 16px;
}

.user-phone {
    font-size: 12px;
    opacity: 0.9;
}

.wallet-info {
    font-weight: 700;
    font-size: 16px;
    margin-left: 15px;
}

.nav-right {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

.nav-right i {
    cursor: pointer;
}

.nav-right .fa-whatsapp {
    color: #25D366;
}

.main-content {
    padding: 15px;
    padding-bottom: 80px; /* Space for bottom nav */
}

/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #0A2558;
}

.slides-container {
    display: flex;
    width: 100%;
    height: 150px;
    position: relative;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
    animation: fade 1.5s;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: #0A2558;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* Latest Result Card */
.latest-result-card {
    border: 2px solid #0A2558;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background: white;
}

.card-header {
    background-color: #0A2558;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 18px;
}

.card-body {
    text-align: center;
    padding: 20px;
}

.result-number {
    font-size: 48px;
    font-weight: 700;
    color: #000;
}

.result-name {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

/* Info Notice */
.info-notice {
    text-align: center;
    font-size: 14px;
    color: #0A2558;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.wa-btn {
    display: block;
    width: 60px;
    margin: 10px auto;
    background-color: #128C7E;
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 24px;
    text-decoration: none;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.game-card {
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    position: relative;
    color: white;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blue-card { background-color: #0A2558; }
.red-card { background-color: #8B0000; }

.time-tag {
    position: absolute;
    top: -10px;
    left: 0;
    background-color: #D8D2E6;
    color: #4A3A75;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
}

.game-number {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0;
}

.game-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0A2558;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #8A9BB8;
    text-decoration: none;
    font-size: 12px;
    gap: 5px;
}

.nav-item i {
    font-size: 20px;
}

.nav-item.active {
    color: #FFD700; /* Yellow */
}

/* Subpage Navigation */
.top-nav-sub {
    background-color: #0A2558;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-btn {
    color: white;
    text-decoration: none;
    font-size: 20px;
    margin-right: 15px;
}

.page-heading {
    font-size: 18px;
    font-weight: 600;
}

/* Market List */
.market-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.market-card {
    background-color: #007683; /* Teal/Dark Cyan color from image */
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.market-info {
    display: flex;
    flex-direction: column;
}

.market-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.market-time {
    font-size: 12px;
    opacity: 0.9;
}

.play-btn {
    background-color: #00A600; /* Bright Green */
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.play-btn:hover {
    background-color: #008f00;
}

/* Game Header */
.game-header {
    background-color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

.gh-left {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.gh-left a {
    color: #000;
    text-decoration: none;
}

.gh-right {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
}

/* Game Tabs */
.game-tabs {
    background-color: #0A2558;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    position: sticky;
    top: 55px; /* below header */
    z-index: 99;
}

.game-tabs .tab {
    color: white;
    padding: 15px 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.game-tabs .tab.active {
    border-bottom: 3px solid white;
}

/* Jantri Container */
.jantri-container {
    padding: 10px;
    padding-bottom: 150px; /* Space for action bar and bottom nav */
    background: white;
}

.jantri-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
}

.jantri-item {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-direction: column;
}

.j-num {
    background-color: #444; /* Dark grey */
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 700;
}

.j-input {
    width: 100%;
    border: none;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    outline: none;
    -moz-appearance: textfield;
}

.j-input::-webkit-outer-spin-button,
.j-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Haruf Sections */
.haruf-header {
    background-color: #0A2558;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Play Action Bar */
.play-action-bar {
    position: fixed;
    bottom: 60px; /* Above bottom nav */
    left: 0;
    width: 100%;
    background-color: #0A2558;
    display: flex;
    padding: 10px;
    gap: 10px;
    z-index: 100;
}

.total-amount {
    flex: 1;
    background-color: white;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    border-radius: 5px;
}

.btn-play-game {
    flex: 1;
    background-color: #00A600;
    color: white;
    border: none;
    padding: 15px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

/* Open Tab Styles */
.open-container {
    padding: 15px;
    background-color: #f5f5f5;
    min-height: 500px;
}

.open-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #0A2558;
    background-color: white;
    font-size: 16px;
    color: #4A3A75;
}

.open-input::placeholder {
    color: #4A3A75;
}

.btn-add {
    width: 100%;
    background-color: #00A600;
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    margin-bottom: 20px;
    cursor: pointer;
}

.bet-list-header {
    background-color: #0A2558;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
}

.bet-list {
    background-color: transparent;
}

/* Crossing Tab Styles */
.toggle-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.toggle-label {
    font-size: 18px;
    font-weight: 700;
    color: #0A2558;
}

/* Toggle Switch CSS */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .4s;
}
input:checked + .slider {
  background-color: #0A2558;
}
input:checked + .slider:before {
  transform: translateX(20px);
}
.slider.round {
  border-radius: 20px;
}
.slider.round:before {
  border-radius: 50%;
}

.crossing-inputs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.half-input {
    width: 42%;
    margin-bottom: 0;
}

.cross-icon {
    width: 30px;
    height: 30px;
    background-color: #1a2233; /* Dark color */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

/* Wallet Page Styles */
.refresh-icon {
    font-size: 20px;
    cursor: pointer;
}

.wallet-header-block {
    background-color: white;
    padding: 20px;
    margin-bottom: 0;
}

.wallet-balance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.wb-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wb-text {
    display: flex;
    flex-direction: column;
}

.wb-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

.wb-subtitle {
    font-size: 14px;
    color: #666;
}

.wb-right {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.wallet-btns-row {
    display: flex;
    gap: 15px;
}

.btn-withdrawal, .btn-add-money {
    flex: 1;
    border: none;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.btn-withdrawal {
    background-color: #FF4D4D; /* Red */
}

.btn-add-money {
    background-color: #1FAF1F; /* Green */
}

.wallet-table-header {
    background-color: #000;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 20px;
}

.transaction-list {
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.no-record-found {
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

/* Withdrawal Page Styles */
.withdrawal-container {
    padding: 20px;
    background-color: white;
}

.withdrawal-note {
    font-size: 14px;
    color: #444;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 30px;
}

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

.w-label {
    display: block;
    color: #C02626; /* Red label */
    font-size: 14px;
    margin-bottom: 8px;
}

.w-input {
    width: 100%;
    border: 1px solid #C02626; /* Red border */
    border-radius: 5px;
    padding: 12px;
    font-size: 16px;
    outline: none;
}

.w-gateway-text {
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: #000;
    margin: 25px 0 20px 0;
}

.gateway-options {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 30px;
}

.gateway-card {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    flex: 1;
    cursor: pointer;
    background-color: white;
    transition: 0.3s;
}

.gateway-card.active {
    background-color: #e0e0e0; /* Grey background for selected */
    border-color: #0A2558;
}

.g-logo {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
}

.pe-circle {
    background-color: #5f259f;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.g-name {
    font-weight: 700;
    font-size: 14px;
    color: #000;
}

.w-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.w-submit-btn, .w-add-bank-btn {
    background-color: #0A2558; /* Dark Blue */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.w-or-text {
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

/* Add Bank Page Styles */
.add-bank-container {
    padding: 20px;
    background-color: white;
}

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

.b-label {
    display: block;
    color: #333; /* Dark grey/black label */
    font-size: 14px;
    margin-bottom: 8px;
}

.b-input {
    width: 100%;
    border: 1px solid #ccc; /* Grey border */
    border-radius: 5px;
    padding: 12px;
    font-size: 16px;
    outline: none;
}

.b-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.b-submit-btn {
    background-color: #0A2558; /* Dark Blue */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

/* Add Money Page Styles */
.add-money-container {
    padding: 20px;
}

.am-label {
    display: block;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
}

.am-input {
    width: 100%;
    border: 1px solid #1FAF1F; /* Green border */
    border-radius: 5px;
    padding: 15px;
    font-size: 18px;
    color: #1FAF1F; /* Green text */
    outline: none;
    background-color: white;
    margin-bottom: 20px;
}

.quick-amounts {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.qa-btn {
    background-color: #1FAF1F; /* Green */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    flex: 1;
    min-width: 60px;
}

.am-submit-btn {
    background-color: #0A2558; /* Dark Blue */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

/* Bidding Page Styles */
.bidding-container {
    padding: 15px;
    padding-bottom: 80px; /* space for bottom nav */
}

.bidding-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bidding-card {
    background-color: #333333; /* Dark Grey */
    border-radius: 8px;
    padding: 18px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #555;
}

.bc-name {
    color: white;
    font-size: 16px;
    font-weight: 700;
}

.bc-time {
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
}

/* Bid History Page Styles */
.bid-history-header {
    background-color: #000;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 18px;
}

/* More Page Styles */
.more-header-block {
    background-color: #444; /* Dark Grey */
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mh-title {
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin-top: 10px;
}

.more-menu-list {
    padding: 15px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.more-menu-item {
    background-color: #0A2558; /* Dark Blue */
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.mmi-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mmi-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 16px;
}

.mmi-text {
    color: white;
    font-size: 16px;
    font-weight: 700;
}

.mmi-arrow {
    color: white;
    font-size: 14px;
}

/* Sidebar Styles */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background-color: #041639; /* Darker blue for sidebar */
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
}

.sidebar.show {
    left: 0;
}

.sidebar-header {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #0A2558;
}

.sidebar-logo {
    max-width: 80px;
    margin-bottom: 10px;
}

.sidebar-user-name {
    font-weight: 700;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
}

.sidebar-user-phone {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.sidebar-user-balance {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.sidebar-nav {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 5px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    gap: 15px;
    transition: background-color 0.2s;
}

.sidebar-nav a i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0 20px 20px 0;
    margin-right: 20px;
}

.sidebar-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

/* Profile Page */
.profile-banner {
    background-color: #5b21b6; /* Purple color matching screenshot */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
}

.profile-logo {
    max-width: 100px;
    margin-bottom: 15px;
}

.profile-name-caps {
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.profile-details-container {
    padding: 20px;
    background-color: white;
    min-height: calc(100vh - 350px);
}

.profile-field {
    margin-bottom: 20px;
}

.profile-field label {
    display: block;
    color: #4A3A75;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.field-box {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
}

/* Search Result History Page */
.search-form-container {
    background-color: #f0f2f5;
    padding: 15px;
}

.date-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.date-input-wrapper {
    flex: 1;
    position: relative;
    background-color: transparent;
    border: 1px solid #4A3A75;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.date-icon {
    color: #0A2558;
    margin-right: 8px;
    font-size: 16px;
}

.res-date-input {
    border: none;
    background: transparent;
    color: #0A2558;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    outline: none;
}

.game-select-wrapper {
    position: relative;
    border: 1px solid #4A3A75;
    border-radius: 5px;
    background-color: transparent;
}

.res-game-select {
    width: 100%;
    padding: 12px;
    border: none;
    background: transparent;
    color: #0A2558;
    font-size: 14px;
    font-weight: 700;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.game-select-wrapper::after {
    content: '\f107'; /* fa-angle-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0A2558;
    pointer-events: none;
}

.btn-search-now {
    background-color: #0A2558;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.results-table-container {
    background-color: white;
    min-height: calc(100vh - 250px);
}

.table-header-row {
    background-color: #0A2558;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    font-weight: 700;
    font-size: 14px;
}

.th-cell {
    flex: 1;
    text-align: center;
}

.table-data-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333;
}

.td-cell {
    flex: 1;
    text-align: center;
}

.no-record-found {
    text-align: center;
    padding: 50px 20px;
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000;
}
