
.toggle-checkbox {
    display: none;
    }

.toggle-button {
    display: inline-block;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 500;
    color: #2d3748;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0 auto 16px auto;
    user-select: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);

    }
    
.toggle-button:hover {
    background-color: #f8fafc;
    border-color: #cbd5e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

.toggle-checkbox:checked ~ .toggle-content {
    display: block;
    animation: fadeIn 0.3s ease;
    }

.toggle-checkbox:checked + .toggle-button .button-text {
    display: none;
    }

.toggle-checkbox:checked + .toggle-button .button-text-checked {
    display: inline;
    }

.toggle-checkbox:not(:checked) + .toggle-button .button-text {
    display: inline;
    }

.toggle-checkbox:not(:checked) + .toggle-button .button-text-checked {
    display: none;
    }

.toggle-content {
    display: none;
    width: 100%;
    }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}



.info-day-block .tes {
  padding: 0;
  display: flex;
  flex-direction: column;
  min-width: 42px;
    margin-left: 5px;
}

.info-day-block .pos {
  color: #565656;
  padding: 0px;
margin: 5px auto;
  text-align: center;
    font-size:x-small;
}

.info-day-block .item-sha {
    padding: 6px 8px;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 400;
  line-height: 1.4;
    background-color: #274d6715;
    border-radius: 12px;
   
}