

.step {
    margin-bottom: 20px;
}

.step h2 {
    margin-bottom: 10px;
}
.step label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.step input, .step select, .step textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.button { margin-top: 20px; }

.next-step {
    margin-right: 5px;
}
#message {
	color: var(--red1);
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid var(--red1);
    border-radius: 5px;
	display: none;
}

#calendar {
   display: grid;
   grid-template-columns: repeat(7, 1fr);
   grid-gap: 5px;
    margin-bottom: 10px;
}
#calendar .day {
    text-align: center;
    padding: 10px;
    border: 1px solid #eee;
    cursor: pointer;
}
#calendar .day.selected {
     background-color: var(--black2);
    color: white;
}
#calendar .day.disabled {
    color: #ccc;
    cursor: default;
}

#time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    grid-gap: 5px;
    margin-top: 10px;
}

#time-slots .time-slot {
    text-align: center;
    padding: 10px;
    border: 1px solid #eee;
    cursor: pointer;
}

#time-slots .time-slot.selected {
    background-color: var(--black2);
    color: white;
}
#time-slots .time-slot.disabled {
    color: #ccc;
    cursor: default;
    opacity: 0.6;
}

#branch-info {
    background: var(--black6);
}
#branch-info>p {
    margin: 0;
	padding: 5px 15px;
}

.inf_block {
    margin-bottom: 20px;
    background: var(--black5);
    padding: 20px;
}

.delete-button{
	margin-top: 10px;
   
}

.usp {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}