

header {
    width: 100%;
    background-color: #000075;
    padding: 10px 0;
    box-sizing: border-box;
    /* min-width: 850px; */
}

/* Flexbox for layout */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 56px;
}

.login-container {
    margin-top: 50px;
}

/* Center logo styling */
.logo {
    flex-grow: 1;
    text-align: center;
}

.logo-img {
    max-height: 50px; /* Adjust based on your logo size */
}

.table {
    table-layout: fixed;
}

.table thead th {
    background-color: #000075; /* Dark blue background for table headers */
    color: #97D700; /* Light green text color for table headers */
    border-color: #000075; /* Match border with header background */
    padding: 10px; /* Optional: Add padding for better spacing */
}

.table th,
.table td {
  width: 12%;
}

.table th:nth-child(1),
.table td:nth-child(1) {
  width: 16%;
}

.table th.teams,
.table td.teams {
  width: 11%;
}

.table th.teams:nth-child(1),
.table td.teams:nth-child(1),
.table th.teams:nth-child(7),
.table td.teams:nth-child(7) {
  width: 17%;
}



.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.container-fluid {
    width: 100%;
    padding: 20px;
    background-color: #f0f0f0;
    box-sizing: border-box;
    overflow-x: auto; /* Enable horizontal scrolling if needed */
}

.card-custom {
    min-width: 1000px;
    background-color: white;
    padding: 20px;
    margin: 0 auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

@media (max-width: 1000px) {
    .card-custom {
        min-width: 1000px;
        margin: 0;
    }
}

.btn-group {
    display: flex;
    align-items: center;
    height: auto;
  }
  
  .btn {
    padding: 8px 15px;
    height: auto;
    vertical-align: middle;
  }

  .form-inline .form-group {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .form-inline button {
    margin-bottom: 0;
  }

/* .table {
    min-width: 800px;
}
*/
/* .modal-dialog {
    overflow-x: auto;
    max-width: 100%;
  }
  
  /* Ensure modal content is scrollable */
/*  .modal-content {
    min-width: 700px;
    max-width: 100%;
    overflow-x: auto;
  } */

  .modal-body {
    overflow-x: auto;
  }
  
  .modal-body table {
    width: 100%;
    min-width: 600px;
  }

#matchups-button.btn-primary,
#search-button.btn-primary,
#login-button.btn-primary {
    background-color: #000075 !important; /* Dark blue background */
    border-color: #000075 !important; /* Dark blue border */
    color: #97D700 !important; /* Light green text */
}

#matchups-button.btn-primary:hover, 
#matchups-button.btn-primary:focus, 
#matchups-button.btn-primary:active,
#search-button.btn-primary:hover,
#search-button.btn-primary:focus,
#search-button.btn-primary:active {
    background-color: #000060 !important; /* Slightly darker blue on hover */
    border-color: #000060 !important;
    color: #97D700 !important; /* Keep light green text on hover */
}

#players-button.btn-outline-primary {
    border-color: #000075 !important; /* Dark blue border */
    color: #000075 !important; /* Dark blue text */
    background-color: transparent !important; /* Transparent background */
}

#players-button.btn-outline-primary:hover, 
#players-button.btn-outline-primary:focus, 
#players-button.btn-outline-primary:active {
    background-color: #000075 !important; /* Dark blue background on hover */
    color: #97D700 !important; /* Light green text on hover */
    border-color: #000075 !important; /* Dark blue border on hover */
}

#players-button.btn-primary,
#players-button.btn-primary.active {
    background-color: #000075 !important; /* Dark blue background */
    border-color: #000075 !important;
    color: #97D700 !important; /* Light green text */
}

#players-button.btn-primary:hover, 
#players-button.btn-primary:focus, 
#players-button.btn-primary:active {
    background-color: #000060 !important; /* Slightly darker blue on hover */
    border-color: #000060 !important;
    color: #97D700 !important; /* Light green text on hover */
}

/* Matchups Button as Outline (normal state) */
#matchups-button.btn-outline-primary,
#matchups-button.btn-outline-primary.active {
    border-color: #000075 !important;
    color: #000075 !important;
    background-color: transparent !important;
}

#matchups-button.btn-outline-primary:hover, 
#matchups-button.btn-outline-primary:focus, 
#matchups-button.btn-outline-primary:active {
    background-color: #000075 !important;
    color: #97D700 !important;
    border-color: #000075 !important;
}

.custom-search-input {
    border: 1px solid #000075;
    border-radius: .25rem; /* Keep the default Bootstrap border-radius */
}

.custom-search-input:focus {
    box-shadow: 0 0 5px rgba(0, 0, 117, 0.5); /* Add a subtle glow effect on focus */
    border-color: #000075; /* Ensure the border remains the same color on focus */
}

