@charset "charset";

body {
  background-color: #f4f4f4;
  font-size: clamp(14px, 4vw, 20px);
}

.container {
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
  text-align: center;
  margin-bottom: 20px;
}

/* Responsive h1 font size */
h1 {
  color: #333;
  font-size: clamp(24px, 5vw, 36px);
}

/* Responsive h2 font size */
h2 {
  color: #007bff;
  margin-top: 20px;
  font-size: clamp(20px, 4vw, 28px);
}

ul {
  list-style-type: none;
  padding: 0;
}

.list-item-link {
  display: block;
  /* Make the anchor tag a block element */
  text-decoration: none;
  /* Remove underline from the link */
  color: inherit;
  /* Inherit text color from parent */
}

.fixture {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: white;
  border: 1px solid #ddd;
  transition: background-color 0.3s;
  margin-bottom: 8px;
}

.result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: white;
  border: 1px solid #ddd;
  /* Default border */
  transition: background-color 0.3s;
  margin-bottom: 8px;
}

.fixture span {
  flex: 1;
  /* Allows the date section to take the remaining space */
}

.result span {
  flex: 1;
  /* Allows the date section to take the remaining space */
}

.fixture:hover {
  background-color: #f0f0f0;
  /* Change background color on hover */
}

.fixed-width {
  width: 150px;
  /* Set a fixed width for the first and third sections */
}

.dynamic-width {
  min-width: 100px;
  /* Set a minimum width for the second section */
  flex-grow: 1;
  /* Allows the second section to grow as needed */
  text-align: center;
  /* Center-aligns text */
  font-weight: bold;
  /* Optional: make the text bold */
}

.right-align {
  text-align: right;
  /* Right-aligns text */
}

.left-align {
  text-align: left;
  /* Left-aligns text */
}

.team {
  font-size: clamp(14px, 2.5vw, 18px);
  /* Responsive team and date font size */
  /* Set font size based on viewport width */
}

.date,
.score {
  min-width: 100px;
  /* Set a minimum width for the second section */
  flex-grow: 1;
  /* Allows the second section to grow as needed */
  text-align: center;
  /* Center-aligns text */
  font-weight: bold;
  /* Optional: make the text bold */
  font-size: clamp(14px, 2.5vw, 18px);
  /* Responsive team and date font size */
}

.fixtureOutstanding {
    border-left: 4px solid black;
    /* Red left border for away win */
  }
  

.home-win {
  border-left: 4px solid green;
  /* Green left border for home win */
  border-right: 4px solid red;
  /* Red right border for home win */
}

.away-win {
  border-left: 4px solid red;
  /* Red left border for away win */
  border-right: 4px solid green;
  /* Green right border for away win */
}


.fixture-outcome-win {
    display: inline-block;
    width: 23px;
    height: 23px;
    background: #0b9c00;
    color: #fff;
    font-size: clamp(14px, 2.5vw, 18px);
    text-align: center;
    line-height: 1px; /* Vertically center text within the element */
}
.fixture-outcome-loss {
    display: inline-block;
    width: 23px;
    height: 23px;
    background: #d12929;
    color: #fff;
    font-size: clamp(14px, 2.5vw, 18px);
    text-align: center;
    line-height: 1px; /* Vertically center text within the element */
}
.fixture-outcome-draw {
    display: inline-block;
    width: 23px;
    height: 23px;
    background: #999;
    color: #fff;
    font-size: clamp(14px, 2.5vw, 18px);
    text-align: center;
    line-height: 1px; /* Vertically center text within the element */
}
.fixture-outcome-none {
    display: inline-block;
    width: 23px;
    height: 23px;
    background: #222;
    color: #999;
    font-size: clamp(14px, 2.5vw, 18px);
    text-align: center;
    line-height: 1px; /* Vertically center text within the element */
}

.highlight-row-top td {
    border-top: 1px solid black;
    /* Black and bolder bottom border for cells */
}

.highlight-row-bottom td {
    border-bottom: 1px solid black;
    /* Black and bolder bottom border for cells */
}






.modern-header {
  background: linear-gradient(135deg, #6a82fb 0%, #fc5c7d 100%);
  /* Soft gradient */
  color: #ffffff;
  /* White text for contrast */
  padding: 5px;
  /* Padding around the text */
  text-align: center;
  /* Center text */
  font-size: clamp(20px, 4vw, 28px);
  /* Responsive font size */
  border-radius: 8px;
  /* Rounded corners */
  margin-bottom: 20px;
  /* Space below the header */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Subtle shadow for depth */
}

.soft-blue-header {
  background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
  /* Darker blue gradient */
  color: #ffffff;
  /* White text for contrast */
  padding: 5px;
  /* Padding around the text */
  text-align: center;
  /* Center text */
  font-size: clamp(20px, 4vw, 28px);
  /* Responsive font size */
  border-radius: 8px;
  /* Rounded corners */
  margin-bottom: 20px;
  /* Space below the header */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Subtle shadow for depth */
}

.sunset-header {
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  /* Warm sunset gradient */
  color: #ffffff;
  /* White text for contrast */
  padding: 5px;
  /* Padding around the text */
  text-align: center;
  /* Center text */
  font-size: clamp(20px, 4vw, 28px);
  /* Responsive font size */
  border-radius: 8px;
  /* Rounded corners */
  margin-bottom: 20px;
  /* Space below the header */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Subtle shadow for depth */
}

.cool-green-header {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  /* Cool green gradient */
  color: #ffffff;
  /* White text for contrast */
  padding: 5px;
  /* Padding around the text */
  text-align: center;
  /* Center text */
  font-size: clamp(20px, 4vw, 28px);
  /* Responsive font size */
  border-radius: 8px;
  /* Rounded corners */
  margin-bottom: 20px;
  /* Space below the header */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Subtle shadow for depth */
}

.elegant-purple-header {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  /* Elegant purple gradient */
  color: #ffffff;
  /* White text for contrast */
  padding: 5px;
  /* Padding around the text */
  text-align: center;
  /* Center text */
  font-size: clamp(20px, 4vw, 28px);
  /* Responsive font size */
  border-radius: 8px;
  /* Rounded corners */
  margin-bottom: 20px;
  /* Space below the header */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Subtle shadow for depth */
}

.vibrant-coral-header {
  background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
  /* Vibrant coral gradient */
  color: #ffffff;
  /* White text for contrast */
  padding: 5px;
  /* Padding around the text */
  text-align: center;
  /* Center text */
  font-size: clamp(20px, 4vw, 28px);
  /* Responsive font size */
  border-radius: 8px;
  /* Rounded corners */
  margin-bottom: 20px;
  /* Space below the header */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Subtle shadow for depth */
}











.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.imgbox {
  display: grid;
  height: 100%;
}


.google-map {
  height: 410px;
  position: relative;
}
.google-map iframe {
  height: 100%;
  width: 100%;
}
.google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.google-map[data-state] {
  background: #e9e5dc;
}
.google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.iframe {
  border-width: 0px;
}

/* Basic styles for the banner */
.permissionBanner {
    display: none; /* Initially hidden */
    background-color: #007bff; /* Bootstrap primary color */
    color: white;
    margin: 50px 0; /* Adjusts spacing above and below the banner */
    padding: 15px; /* Reduced padding */
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    font-size: 14px; /* Smaller font size */
  }

.permissionBanner button {
  margin-left: 5px; /* Reduced margin */
  padding: 5px 10px; /* Smaller button padding */
  border: none;
  border-radius: 3px; /* Slightly smaller border radius */
  cursor: pointer;
  font-weight: bold;
  font-size: 12px; /* Smaller button font size */
}

/* Allow button styles */
.allowButton {
  background-color: #28a745; /* Green for allow */
  color: white; /* White text */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.allowButton:hover {
  background-color: #218838; /* Darker green on hover */
  transform: translateY(-2px); /* Lift effect on hover */
}

/* Deny button styles */
.denyButton {
  background-color: #dc3545; /* Red for deny */
  color: white; /* White text */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.denyButton:hover {
  background-color: #c82333; /* Darker red on hover */
  transform: translateY(-2px); /* Lift effect on hover */
}

.badge-button {
  display: flex; /* Use flexbox for centering */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  width: 25px; /* Set a smaller width for the button */
  height: 25px; /* Set a smaller height for the button */
  font-size: 14px; /* Set a smaller font size */
  background-color: #007bff; /* Background color */
  color: white; /* Text color */
  border: none; /* Remove border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  padding: 0; /* Remove default padding */
  margin-right: 10px; /* Add a margin to the right */
}

.badge-button:hover {
  background-color: #0056b3; /* Darker background on hover */
}

.navbar {
  background: linear-gradient(
    135deg,
    #e0f7fa,
    #80deea
  ); /* Light blue gradient */
  color: white; /* Change text color to white for better contrast */
}

/* Ensure the navbar uses flexbox for layout */
#navBarHeader .container-fluid {
  display: flex; /* Use flexbox for layout */
  justify-content: space-between; /* Space between elements */
  align-items: center; /* Center items vertically */
}

.navbar-brand {
  color: black; /* Change text color to black */
}

.custom-card {
  background-color: #00796b; /* Deep Teal */
  color: #ffffff; /* White text */
  border: none; /* Remove border to keep the shadow effect */
}

/* Style for the unread notifications badge */
.unread-notifications-badge {
  margin-left: 10px; /* Add some space to the left of the badge */
  margin-right: 60px; /* Increase space to the right of the badge */
  background-color: #28a745; /* Green background for the badge */
  color: white; /* White text for contrast */
  border-radius: 5px; /* Rounded corners */
  padding: 10px 15px; /* Increase padding for the badge */
  font-size: 16px; /* Increase font size for better visibility */
  border: none; /* Remove border */
  cursor: pointer; /* Pointer cursor on hover */
  min-width: 80px; /* Set a minimum width for the badge */
}

/* Optional: Add hover effect for the badge */
.unread-notifications-badge:hover {
  background-color: #218838; /* Darker green on hover */
}


/* Sidebar styles */
.sidebar {
    background: linear-gradient(
      135deg,
      #e0f7fa,
      #80deea
    ); /* Light blue gradient */
    color: white; /* Change text color to white for better contrast */
    height: 100vh; /* Full height */
    overflow-y: auto; /* Scroll if content overflows */
  }
  
  /* Optional: Style for links in the sidebar */
  .sidebar .list-group-item {
    background: white; /* Transparent background for links */
    color: black; /* White text color */
    width: 100%;
  }
  
  .sidebar .list-group-item:hover {
    background: rgba(255, 255, 255, 0.1); /* Light hover effect */
  }
  
  .offcanvas-title {
    color: black; /* Change text color to black */
  }




/* Large Devices */
@media (max-width: 1200px) {
  body {
    min-width: 375px;
    /* Prevent resizing below 320px */
    font-size: clamp(16px, 2vw + 8px, 22px);
    /* Adjust for large devices */
  }
}

/* Medium Devices */
@media (max-width: 992px) {
  body {
    min-width: 375px;
    /* Prevent resizing below 320px */
    font-size: clamp(16px, 2vw + 4px, 20px);
    /* Adjust for medium devices */
  }
}

/* Small Devices */
@media (max-width: 768px) {
  body {
    min-width: 375px;
    /* Prevent resizing below 320px */
    font-size: clamp(16px, 2vw, 18px);
    /* Adjust for small devices */
  }
}

/* Extra Small Devices */
@media (max-width: 576px) {
  body {
    min-width: 375px;
    /* Prevent resizing below 320px */
    font-size: clamp(14px, 2vw, 16px);
    /* Adjust for extra small devices */
  }
}

