.alarmdiv{
    background-color: gray;
    width: 450px;
    height: 670px;
    padding: 10px;
    border-radius: 5px;
}
/* Container for the toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide the default checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Slider styling */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

/* Circle inside the slider */
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

/* When checkbox is checked */
input:checked + .slider {
  background-color: #4caf50;
}

input:checked + .slider:before {
  transform: translateX(26px);
}
.alarm-times{
    height: 100px;
    display: flex;
    align-items: center;
    gap: 50%;
    font-size: 40px;
    border-bottom: 2px solid black; 
    margin-left: 5px;
    margin-right: 15px;
    
}
.alarm-del{
    font-size: 15px;
    padding: 5px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
.right-alrm{
    display: flex;
    gap: 20px;
}
.csinputAlrm{
    font-size: 30px;
    border-radius: 5px;
    border: none;
}
.addAlarm{
    font-size: 25px;
    border-radius: 5px;
    border: none;
    margin-left: 56%;
    cursor: pointer;
    padding: 4px;
}
.closeAlarm{
  cursor: pointer;
  border: none;
  padding: 5px 8px;
  margin-bottom: 10px;
}
.closeAlarm:hover{
  background-color: rgb(121, 32, 24);
}
.closeAlarm:active{
  opacity: 0.7;
}
