* {
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: fit-content;
  overflow-x: hidden;
  background-color: #ddd;
}

/* home start */
.home {
  position: relative;
  top: 0%;
  height: fit-content;
}

/* home end */

/* home page section two */

.calender-body {
  height: 100vh;
  width: 100vw;

  padding: 20px;
  padding-top: 93px;
  position: relative;
}

.tittle {
  text-align: center;
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000066;
  font-family: "PF Din Stencil W01 Bold";
}

.calender {
  display: flex;
  justify-content: center;
}

/* card */

body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 350px;
  width: calc(33% - 20px); /* Two cards per row by default */
  margin: 10px;
}

.card-body {
  padding: 20px;
  text-align: center;
  position: relative;
}

.crud {
  position: absolute;
  bottom: 10px;
  right: 20px;
}

.card-logo {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}

.card-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 10px;
}

.card-status {
  display: inline-block;

  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 10px;
}

.entry_open {
  background-color: green;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.entry_open_soon {
  background-color: rgb(12, 4, 255);
}

.postponed {
  background-color: rgb(238, 4, 255);
}

.entry_closed {
  background-color: rgb(255, 0, 0);
}

.cancelled {
  background-color: red;
}

.matches_on {
  background-color: yellow;
  color: black;
}

.completed {
  background-color: darkgreen;
}

.card-subtitle {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
  margin-bottom: 20px;
}

.card-details {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.card-details li {
 
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #495057;
}

.card-details i {
  margin-right: 8px;
}

/* Icons (use FontAwesome or similar icon library) */
.icon-calendar:before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-event:before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-category:before {
  content: "\f0c0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-grade:before {
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .card {
    width: 100%; /* Cards take up full width on mobile */
    margin: 10px 0; /* Adjust margin for spacing */
  }
}

.filter-section {
  margin-bottom: 20px;
}

.filter-input {
  margin-bottom: 10px;
}

.apply {
  margin-bottom: 10px;
}
