p { margin-bottom:0;}


input[type="time"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
  }
  
input[type="time"] {
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;

    padding-right: 2rem;
    position: relative;
}

.modal-dialog{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;

}
.modal-content{
    border-radius: 0;
}
.modal-header{
    border: none;
}

.btn-custom-primary {
    background: linear-gradient(135deg, #5e7fa0, #7fa7c4);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-custom-primary:hover {
    background: linear-gradient(135deg, #4b6c8c, #6b96b4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-custom-secondary {
    border: 1px solid #ced4da;
    color: #495057;
    background: #f8f9fa;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.btn-custom-secondary:hover {
    background: #e2e6ea;
    color: #333;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.slots-list-container {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slot-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.slot-list-item:hover {
    background-color: #f1f1f1;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.slot-list-item small {
    color: #6c757d;
    font-size: 0.9rem;
}

.iti{
    width:100%;
}



