
.c-modal{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 0.4rem;
  width: 90vw;
  padding: 1.3rem;
  min-height: 250px;
  position: absolute;
  top: 5%;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 15px;
  z-index: 999;
  /* border:1px solid red; */
}
.c-modal-head{
    display:flex;
    justify-content: space-between;
    margin-top: .3rem;
    margin-bottom: .3rem;
    align-items: center;
    width: 100%;
}
.c-modal-content{
  display: flex;
  flex-direction: column;
  width: 100%;

}
.button-close{
    width:1.5rem;
    height:1.5rem;
    display: grid;
    place-content: center;
    border-radius: 50%;
    border: none;
    background-color: white;
}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1;
}

.c-modal-head{
  /* border:1px solid blue; */
  margin-top:0
}
.student-summary{
  display: flex;
  /* border:2px solid yellow; */
  font-weight: 600;
}
.student-summary-descrip{
margin-inline: 2rem
}
.attended-text{
  color:var(--primary-green);
  background-color:#DAEFE7 ;
}
.unattended-text{
  color:var(--primary-red);
  background-color: #F9E3E1;
}
.unmarked-text{
  color: var(--primary-yellow);
  background-color: #FBF1D0;
}
.matter-container{
  display: flex;
  /* border: 2px solid red */
}
.package-names-td{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.package-list{
  width:40%;
}
@media screen and (max-width:600px) {
 .package-list, .student-summary{
  display:none;
}
}
.package-list-head{
  font-size: 1.2 rem;
  font-weight: 700;
}
.package-list-item{
  margin-top: .5rem;
  margin-bottom: .5rem;
  border:1px solid var(--subtle-blue);
  border-radius: 15px;
  padding:5px;
  width:100%;
  display: flex;
  justify-content: space-evenly;
}
.attendance-summary{
  cursor: pointer;
  display: flex;
  column-gap: .5rem;
  row-gap: .5rem;
}
.attendance-summary-td-data{
  font-weight: 500;
  border-radius: .2rem;
  width:7rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;

}



.calendar-container{
  display: flex;
  flex-direction: column;
  width: 100%;
  /* border: 2px solid green; */

}
.week-strip{
  display: flex;
  width: 100%;

}
.week-day-title{
  width:120px;
  /* border:1px solid orange; */
  margin:.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #514E4E;
}
.calendar-week{
  display:flex;
  /* border:1px solid purple; */
}
.calendar-day{
  display:flex;
  flex-direction: column;
  border:1px solid var(--subtle-blue);
  width: 120px;
  height: 120px;
  margin:.2rem;
  border-radius: 15px;
}
.date-title{
  font-weight: 700;
  margin-left: .5rem;
}
.session{
  margin-top: .2rem;
  margin-bottom: .2rem;
  margin-inline: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.session-time{
  font-size: .6rem;
  font-weight: 600;
}
.unmarked{
  background-color: var(--primary-yellow);

}
.unattended{
  background-color: var(--primary-red);

}
.attended{
  background-color: var(--primary-green);
}
.coach-popup{
  position: absolute;
  display: inline-block;
  z-index: 10;
  background-color:white;
  width:250px;
  padding:10px;
  -webkit-box-shadow: 1px 6px 16px -5px rgba(133,133,133,1);
  -moz-box-shadow: 1px 6px 16px -5px rgba(133,133,133,1);
  box-shadow: 1px 6px 16px -5px rgba(133,133,133,1);
  border-radius: 15px;
  cursor: unset !important;



}

@media screen and (max-width:600px) {
.attendance-summary{
    flex-wrap: wrap;
}

}
.hiddenm{
  display: none;
}
.coachlist{
  display: flex;
  flex-direction: column;
}
.coachlist{
  position:relative;
  z-index: 11;
}

.popup-head{
  display: flex;
  width:100%;
  align-items: center;
  justify-content: space-between;
}
.attendance-btn{
  width:25px;
  height:25px;
  border:none;
  border-radius:50%;

}
.attendance-btn{
  width:25px;
  height:25px;
  border:2px solid white;
  border-radius:50%;
  cursor: pointer;
}
.session-popup-close{
    background-color: white;
    position: relative;
    border: none;
    margin-left:auto;
    margin-right:10px

}





