body {
  margin: 0;
  font-family: sans-serif;
  background: #ffffcc;
}

.content {
  padding: 5px;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #520000;
  border-top: 1px solid #030000;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-item {
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  flex-grow: 1;
  font-size: 14px;
}

.nav-item span {
  display: block;
  font-size: 20px;
}

.nav-item.active {
  color: #ffc400; 
}

.nav-item.active span {
  font-weight: bold;
}

.bottom-nav i {
    display: block;
    font-size: 20px;
    margin-bottom: 3px;
}









header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #520000; /* SportyBet red */
    color: white;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .left-section {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .logo {
    font-size: 20px;
    font-weight: bold;
  }

 
  .right-section {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
  }

  .icon {
    cursor: pointer;
  }

























  .styled-list {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
    background-color: #ffffff;
    border-radius: 8px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Styling for each li */
.styled-list li {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for each li */
.styled-list li:hover {
    background-color: #f0f0f0;
}

/* Last item has no bottom border */
.styled-list li:last-child {
    border-bottom: none;
}

/* Optional: Adding a little space between the list items */
.styled-list li:not(:last-child) {
    margin-bottom: 5px;
}






/* Verify Styles */

.msg {
    padding: 5px;
    border: 2px solid #993300;
    background: #EFEF00;
    color: #993300;
    font-weight: bold;
    text-align: center;
    margin: 5px;
    border-radius: 10px;
}