html{
    margin:0;
    padding:0;
}
body{
padding:0;
margin:0;
 font-family: Arial, sans-serif;
}

.hbg{
    background-color: #B92533;
    color:white;
    text-align: center;
    padding: top 25px;
    padding: bottom 10px;
    margin-top:0;
}
 /* Navbar */
  .navbar {
    display: flex;
    justify-content: center;
    /*justify-content: flex-start;*/
    align-items: center;
    padding: 10px 15px;
    background-color: #3c0505;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    flex-wrap: wrap;
  
   
  }

  .nav-btn {
    background: transparent;
    color: #fff;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 6px;
    transition: background 0.3s;
      font-weight: bold;
    font-size:20px

  }

  .nav-btn:hover {
    background: rgba(255,255,255,0.1);
  }

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #5e0b0b;
    border-radius: 8px;
    top: 35px;
    left: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    min-width: 150px;
      color: #fff;
  }

  .dropdown-menu a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px;
    transition: background 0.3s;
  }

  .dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  /* Calendar Dropdown */
  .calendar-menu {
    padding: 10px;
    min-width: 320px;
  }

  /* Calendar Styles */
  #calendar-container {
    background: #3c0505;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    overflow: hidden;
    width: 100%;
    max-width: 340px;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: #6a0c0c;
    color: #fff;
  }

  .header h3 {
    margin: 0;
    font-size: 1rem;
    text-align: center;
    flex: 1;
  }

  .header button {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .header button:hover {
    background: rgba(255,255,255,0.25);
  }

  .weekdays, .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
  }

  .weekdays div {
    padding: 5px 0;
    font-weight: bold;
    background: #5e0b0b;
  }

  .days div {
    padding: 6px 0;
    cursor: pointer;
    transition: background 0.3s;
  }

  .days div:hover {
    background: rgba(255,255,255,0.1);
  }

  .days .inactive {
    visibility: hidden;
  }

  .days .today {
    background: #ff2e2e;
    color: #fff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    line-height: 26px;
    margin: 0 auto;
    padding:0;
  }

  /* Responsive */
  @media (max-width: 480px) {
    .nav-btn {
      font-size: 0.9rem;
    }

    .calendar-menu {
      min-width: 100%;
    }

    #calendar-container {
      max-width: 100%;
    }
  }