body {
  font-family: 'Kosugi Maru', sans-serif;
  font-weight: 350;
  font-style: normal;
  background-size: cover;
  background-position: center;
  transition: background 0.5s ease-in-out;
}



input[type="search"]::-webkit-search-cancel-button {
  position: relative;
  right: -5px;
  cursor: pointer;
  height: 25px;
  width: 25px;
}


.responsive-img {
  width: 100%;
  
  height: auto;       /* Keeps the aspect ratio */
  display: block;
  margin: auto;       /* Centers the image */
}



.bukatsu {
  width: 200px; /* Adjust width as needed */
}

.text-container {
  padding: 10px;
}


.coach {
  width: 150px; /* Adjust width as needed */
}

input[name="point"] {
  width: 70px; /* Narrower for point selection */
  /* text-align: left;  */
  padding-left: 2px; /* Add some space for text */
  box-sizing: border-box; /* Ensures padding doesn’t affect width */
  text-align: center; /* Center numbers */
}


.overlay {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px); /* Blur the background */
  width: 100%;

  /* Center content within the parent */
  justify-content: center;
  align-items: center;

  padding: 10px;
  border-radius: 5px;
}

/* 入力したコーチのポイントを集計した表 */
#unique-coach-table {
  width: 400px;
  /* border-collapse: collapse; */
}
.coach-name-width {
  width: 50px;
}
.number-width {
  width: 20px;
}
.icon-width {
  width: 20px;
}




table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 18px;
  text-align: left;
}

th, td {
  padding: 2px;
  /* border: 1px solid black; */
}

th {
  background: #333;
  color: white;
}

/* sticky header */
thead tr:first-child th {
  position: sticky;
  z-index: 12;
  top: 0;
}



/* Sky Blue Striped Table */
.skyblue-table tbody tr:nth-child(odd) {
  background-color: skyblue;
}
.skyblue-table tbody tr:nth-child(even) {
  background-color: lightblue;
}

/* Yellow Striped Table */
.yellow-table tbody tr:nth-child(odd) {
  background-color: #fCfC99;
}
.yellow-table tbody tr:nth-child(even) {
  background-color: lightyellow;
}

/* for pagination buttons */
.dataTables_wrapper .dataTables_paginate {
  display: flex;
  gap: 0.2em; /* spacing between buttons */
  flex-wrap: wrap;
}
/* for pagination buttons */
.dataTables_wrapper .dataTables_paginate a,
.dataTables_wrapper .dataTables_paginate span {
  padding: 4px 8px;
  margin: 0 2px;
}