.scheduling-container {
    /* background-color: red; */
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
    height: 700px;         
    overflow-y: auto;       
    overflow-x: hidden; 

}

.scheduling-container .app-1-header {
    font-size: 18px;
    margin-left: 15px;
}

.schedule-content {
    display: flex;
    flex-direction: column;
    background-color: rgb(223, 223, 223);
    width: 370px;
    height: 140px;
    margin: 20px auto;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.schedule-content hr {
    border-color: #8d8d8d;
    border-width: 1px;
    border-style: solid none none none;
    width: 95%;
    margin-bottom: 10px;


}

.add-btn {
    background: url(../img/add.png) no-repeat center center / contain;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;

}

.add-btn-container {
    display: flex;
    justify-content: flex-end;
    margin-right: 15px;
}

#time, #coffee-name {
    font-weight: 500;
}

/* .scheduling-container .schedule-header #time,
.scheduling-container .schedule-header #coffee-name {
    display: inline-block; 
    margin-top: 10px; 
} */


.schedule-header {
    margin-top: 20px;
    margin-left: 15px;
}


.scheduled-days {
    display: flex;
    gap: 8px;
    /* margin-top: px; */
    margin-left: 15px;
    margin-bottom: 5px;
}

.day-btn, .day, .schedule-ml {
    padding: 6px 12px;
    border-radius: 20px;
    background: #333;
    color: white;
    font-size: 10px;
    margin-top: 10px;
}

.schedule-ml {
    width: fit-content;
    margin-left: 15px;
}

.schedule-content .toggle {
    display: flex;
    justify-content: flex-end;
    margin-right: 15px;

}

.dialogue-container {
    background-color: #f7f7f7;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(0, 0, 0, 0.2);
    width:360px;
    padding-bottom: 20px;

    position: absolute;
    z-index: 100;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    visibility: hidden;

}
.app-1-subhead {
    font-size: 14px;
    margin-left: 15px;
}



.dialogue-header {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 10px 15px;
}


.x-btn {
    
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}


/* --- */

.time-container {
    background: #2c2c2c;
    color: white;
    font-size: 18px;
    padding: 4px 8px;
    width: 310px;
    margin-left: 15px;
    border-radius: 6px;
    border: 1px solid #444;
    /* text-align: center; */
}

.time-input {
    display: flex;
    align-items: center;
    gap: 0px;
}

.time-input input {
    background: none;
    border: none;
    color: var(--font-color1);
    font-size: 14px;
    font-weight: 700;
    /* background-color: red; */
}

.time-input input:focus {
    border-color: #8ab4ff;
    outline: none;
}

input::-webkit-calendar-picker-indicator {
    opacity: 0; /* hides default arrow if needed */
}

#hour {
    text-align: right;
}
#period {
    width: 100px;
    cursor: pointer; 
    user-select: none; 
}

.dropdown-wrap {
    position: relative;
    margin: 0;
    
}


/* dropdown */

.dropdown {
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100%;
    max-height: 130px;
    overflow-y: auto;
    background: #1e1e1e;
    border: 1px solid #444;
    border-radius: 0; 
    display: none;
    z-index: 20;
    font-size: 14px;
    border: none;
}

.dropdown div {
    padding: 6px;
    text-align: center;
    color: white;
    cursor: pointer;
}

.dropdown div:hover {
    background: #444;
}

.dropdown::-webkit-scrollbar {
    width: 0px;         
    background: transparent; 
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.dialogue-container .day {
    padding: 5px 10px;
    border-radius: 20px;
    background: #222;
    color: white;
    cursor: pointer;
    font-size: 12px;
    user-select: none;
    margin-bottom: 15px;
}


.dialogue-container .day.selected {
    background-color: #535353;
    color: white;
}

.save-btn {
    display: block;
    width: 80%;
    margin: 40px auto;
    background: #222;
    color: white;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
}

#coffee-type {
    display: block;
    width: 80%;
    margin: 10px auto;
    background: #222;
    color: white;
    padding: 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
}

.delete-btn {
    width: 20px;
    height: 20px;
    border: none;
    background: url('../img/trash-bin.png') no-repeat center center / contain;
    /* background-color: transparent; */
    cursor: pointer;
    margin-left: 170px;
    
}