.element-class {
	background-image: none !important;
	background-color: #19204E !important;
}


/* Set the font color to white on the event title links */
.tribe-events-widget-events-list_event-title-link,
.tribe-events-widget-events-list_event-title-link a,
.tribe-events-widget-events-list a{
	color: white !important;
}

html, body {
    overflow-x: hidden;
}
/* Target the event date container and apply a box with the desired color */
.tribe-events-widget-events-list__event-date-tag {
    display: inline-block;
    background-color: #19204e !important; /* Deep blue background */
    padding: 10px 15px !important; /* Add padding for spacing */
    border-radius: 8px !important; /* Rounded corners */
    text-align: center !important; /* Center the text */
}

/* Make sure the date number is styled correctly */
.tribe-events-widget-events-list__event-date-tag .tribe-events-widget-events-list__event-date-tag-daynum {
    color: white !important; /* White font color */
    font-size: 1.6rem !important; /* Adjust the font size */
    font-weight: bold !important; /* Bold font */
}

/* Ensure the month text is white and properly styled */
.tribe-events-widget-events-list__event-date-tag .tribe-events-widget-events-list__event-date-tag-month {
    color: white !important; /* White font color */
    font-size: 1.2rem !important; /* Smaller font size for the month */
    font-weight: bold !important; /* Bold month text */
}
/* Make the event title link text white */
.tribe-events-calendar-list__event-title-link {
    color: white !important;
}
/* Make the month separator text white */
.tribe-events-calendar-list__month-separator-text {
    color: white !important;
}
/* Change font color for the event date */
.tribe-events-widget-events-list__event-datetime {
    font-size: 24px !important; /* Adjust size as needed */
    color: #19204e !important; /* Set color to #19204e */
}
/* Set font color to #19204e and border color to #fcb300 */
.tribe-events-widget-events-list__header-title {
    color: #19204e !important; /* Font color */
    border: 2px solid #fcb300 !important; /* Border color */
    padding: 10px !important;
}

/* Optionally, add a hover effect */
.tribe-events-widget-events-list__header-title:hover {
    border-color: #fcb300 !important; /* Border color stays the same */
    color: #19204e !important; /* Font color stays the same */
}
/* Set font color to #19204e and remove any border or background */
.tribe-events-widget-events-list__header-title {
    color: #19204e !important; /* Font color */
    background-color: white !important; /* Ensure background is white */
    border: none !important; /* Remove any border */
}

/* Optionally, remove any hover effects if there's any unwanted color change */
.tribe-events-widget-events-list__header-title:hover {
    color: #19204e !important; /* Font color remains the same on hover */
    background-color: white !important; /* Background remains white on hover */
    border: none !important; /* Ensure no border appears on hover */
}
/* Set font color to #19204e, make the font size larger, remove any border or background */
.tribe-events-widget-events-list__header-title {
    color: #19204e !important; /* Font color */
    background-color: white !important; /* Ensure background is white */
    border: none !important; /* Remove any border */
    font-size: 20px !important; /* Increase font size to make the text larger */
}

/* Optionally, ensure the font size is consistent on hover */
.tribe-events-widget-events-list__header-title:hover {
    color: #19204e !important; /* Font color remains the same on hover */
    background-color: white !important; /* Background remains white on hover */
    border: none !important; /* Ensure no border appears on hover */
    font-size: 20px !important; /* Ensure the font size stays the same on hover */
}

@media only screen and (max-width: 600px) {
    .tribe-events-widget-events-list__event-date-tag-month {
        white-space: nowrap; /* Prevents the text from wrapping */
        font-size: 14px; /* Optional: Adjust font size for mobile view */
    }
}

/* Container for all four boxes */
.athlete-stat-boxes {
    display: flex; /* Aligns the boxes horizontally on larger screens */
    justify-content: space-around; /* Spaces the boxes evenly */
    gap: 10px; /* Adjust the space between the boxes */
    margin-top: 20px; /* Adds space between the boxes and the object above */
    margin-bottom: 20px; /* Optional: Adds space below the boxes */
}

/* Style for each individual box */
.athlete-stat-box {
    background-color: #19204e; /* Updated background color */
    color: white; /* White font color */
    font-family: Arial, sans-serif; /* Adjust the font family as needed */
    text-align: center; /* Centers the text inside the box */
    padding: 15px; /* Padding inside the box */
    border-radius: 15px; /* Rounded corners */
    width: 100px; /* Fixed width for larger screens */
    display: flex;
    flex-direction: column; /* Stacks the number and label vertically */
    justify-content: center; /* Centers the text vertically */
    align-items: center; /* Centers the text horizontally */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Adds a light shadow around the box */
}

/* Style for the number in the box */
.stat-number {
    font-size: 18px; /* Adjusted font size for the number */
    font-weight: bold; /* Makes the number bold */
}

/* Style for the label (e.g., PPG, RPG) */
.stat-label {
    font-size: 12px; /* Adjusted font size for the label */
    font-weight: normal; /* Normal weight for the label */
}

/* Media Query for mobile devices */
@media (max-width: 768px) {
    .athlete-stat-boxes {
        flex-direction: column; /* Stacks the boxes vertically */
        align-items: center; /* Centers the boxes horizontally */
        gap: 15px; /* Adds more space between the stacked boxes */
    }

    .athlete-stat-box {
        width: 80%; /* Makes the boxes take up more width on mobile */
        max-width: 300px; /* Limits the width to prevent it from getting too large */
    }
}

/* Add some margin to the right of the APR date */
.tribe-events-widget-events-list__event-date-tag-month {
    margin-right: 15px; /* Adjusts the space between the date and the text */
}

/* Remove left border/line from blockquotes */
blockquote {
    border-left: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

#profile-image-preview {
    display: block;
    margin: 0 auto;
}

/* Reset margin and padding for body and html to avoid interference */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Ensure the container takes up full width and centers content */
.container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Horizontally center */
    justify-content: center; /* Vertically center */
    width: 100%;
    max-width: 100%; /* Ensure it takes up full width */
    margin: 0 auto; /* Center the entire container */
    padding: 0; /* No padding */
}

/* Force column blocks to take up full width and center content */
.wp-block-columns.is-layout-flex {
    display: flex;
    justify-content: center; /* Horizontally center all columns */
}

.wp-block-column.is-vertically-aligned-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%; /* Ensure the column uses full width */
    padding: 0; /* Remove any padding that could offset alignment */
}

/* Table container styling */
.player-info-container {
    width: 100%;
    display: flex;
    justify-content: center; /* Horizontally center the table */
    margin-bottom: 40px; /* Space between table and stat boxes */
}

/* Table styling */
.player-info {
    width: 100%;
    max-width: 800px; /* Table max width */
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    color: #19204e;
}

.player-info th,
.player-info td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    white-space: nowrap;
}

.player-info th {
    background-color: #f4f4f4;
    color: #19204e;
}

/* Stat boxes container styling */
.athlete-stat-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 800px; /* Limit width for stat boxes */
    margin-left: auto;
    margin-right: auto; /* Ensure they are centered */
}

/* Stat box styling */
.athlete-stat-box {
    background-color: #19204e;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 100px;
    font-family: Arial, sans-serif;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.athlete-stat-box:hover {
    transform: scale(1.05); /* Slight grow on hover */
    background-color: #9dcd5a; /* Hover background color */
    color: #19204e !important; /* Hover font color */
}
/* Force the hover color to change (hover override) */
.athlete-stat-box:hover, .athlete-stat-box:focus {color: #19204e !important;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .athlete-stat-boxes {
        flex-direction: column; /* Stack vertically on mobile */
        align-items: center;
    }
}

.dashboard-container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.dashboard-stats {
    display: flex;
    gap: 20px;
}

.stat-card {
    flex: 1;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.dashboard-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.link-card {
    width: 100%;
    max-width: 250px;
    background-color: #19204e;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.link-card:hover {
    transform: scale(1.05);
    background-color: #9dcd5a;
}

.link-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.recent-activity {
    margin-top: 40px;
}

.recent-activity ul {
    list-style: none;
    padding: 0;
}

.recent-activity li {
    margin-bottom: 10px;
}

/* Importing Opun and Roboto fonts */
@import url('https://fonts.googleapis.com/css2?family=Opun:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

.dashboard-container {
  font-family: 'Roboto', sans-serif; /* Body font set to Roboto */
  padding: 20px;
}

/* Section 1: Quick Stats */
.dashboard-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stat-card {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  width: 45%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
  font-family: 'Opun', sans-serif; /* Header font set to Opun */
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.stat-card p {
  font-size: 16px;
}

/* Section 2: Links to Pages */
.dashboard-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.link-card {
  background-color: #19204e;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 30%;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.link-card a {
  color: #fff;
  text-decoration: none;
}

.link-card:hover {
  transform: scale(1.05);
  background-color: #9dcd5a;
}

.link-card h3 {
  font-family: 'Opun', sans-serif; /* Header font set to Opun */
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.link-card p {
  font-family: 'Roboto', sans-serif; /* Body font set to Roboto */
  font-size: 14px;
}

/* Section 3: Recent Activity Feed */
.recent-activity {
  margin-top: 40px;
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.recent-activity h3 {
  font-family: 'Opun', sans-serif; /* Header font set to Opun */
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}

.recent-activity ul {
  list-style-type: none;
  padding-left: 0;
}

.recent-activity li {
  font-family: 'Roboto', sans-serif; /* Body font set to Roboto */
  font-size: 16px;
  margin-bottom: 8px;
}

/* Style the entire form font and border */
.wppb-login-form input[type="text"],
.wppb-login-form input[type="password"],
.wppb-login-form input[type="email"],
.wppb-login-form label {
    font-family: inherit;
    color: #19204e;
    border: 1px solid #19204e;
    border-radius: 4px;
}

/* Adjust input spacing */
.wppb-login-form input[type="text"],
.wppb-login-form input[type="password"] {
    padding: 8px;
    width: 100%;
    margin-bottom: 10px;
}

/* 🎯 Dashboard Links Container */
.dashboard-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

/* 🟨 Link Cards with New Base Color */
.link-card {
  flex: 1 1 calc(20% - 10px);
  max-width: calc(20% - 10px);
  min-width: 150px;
  background-color: #fcb300;       /* Gold */
  color: #19204e;                  /* Navy text */
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ✨ Hover State */
.link-card:hover {
  background-color: #9dcd5a;       /* Green */
  color: #19204e;                  /* Still Navy text */
}

/* 🚫 Remove underline & inherit color */
.link-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* 📱 Tablet View */
@media (max-width: 1024px) {
  .link-card {
    flex: 1 1 calc(33.33% - 10px);
    max-width: calc(33.33% - 10px);
  }
}

/* 📱 Mobile View */
@media (max-width: 767px) {
  .link-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Container for table to allow scrolling */
.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Ensures smooth scrolling on mobile */
    margin-bottom: 40px; /* Space between table and stats */
}

/* Make the table scrollable horizontally */
.table-container table {
    width: 100%;
    table-layout: fixed;
    min-width: 800px; /* Adjust as needed */
}

/* Style for the stats container */
.stats-container {
    margin-top: 20px; /* Add space between table and stats */
}

/* Example styling for stat boxes */
.stat-box {
    margin-bottom: 15px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Example hover effect for stat boxes */
.stat-box:hover {
    background-color: #e6f7ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Container for table to allow scrolling */
.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Ensures smooth scrolling on mobile */
    margin-bottom: 40px; /* Space between table and stats */
}

/* Make the table scrollable horizontally */
.table-container table {
    width: 100%;
    table-layout: fixed; /* Forces table to use a fixed layout */
    min-width: 800px; /* Adjust as needed */
    word-wrap: break-word; /* Ensure long words or text break */
}

/* Ensure table cells handle overflow properly */
.table-container table td {
    word-wrap: break-word;
    white-space: normal; /* Allows text to wrap */
    padding: 10px; /* Add some padding inside the cells */
    box-sizing: border-box; /* Ensures padding doesn't affect table width */
}

/* Style for the stats container */
.stats-container {
    margin-top: 20px; /* Add space between table and stats */
}

/* Example styling for stat boxes */
.stat-box {
    margin-bottom: 15px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Example hover effect for stat boxes */
.stat-box:hover {
    background-color: #e6f7ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

