/*Retails store registratopn form datepicker*/
.appointment-customer-index .ui-datepicker .ui-datepicker-title .ui-datepicker-month{
    width: 43%;
    margin-right: 2%;
}
.appointment-customer-index .ui-datepicker .ui-datepicker-title .ui-datepicker-year{
    width: 55%;
}

/* Appointment Management Styles */
.appointment-management {
    margin-bottom: 40px;
}

.appointment-lookup-form {
    margin-bottom: 30px;
}

.appointments-container {
    margin-top: 30px;
}

.appointment-item {
    border: 1px solid #e5e5e5;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.appointment-details {
    flex: 1;
}

.appointment-details div {
    margin-bottom: 5px;
}

.appointment-actions {
    margin-left: 15px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

.modal-content h3 {
    margin-top: 0;
}

.modal-content .actions-toolbar {
    margin-top: 20px;
}

/* Appointment Management Section Styles */
.appointment-management-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.section-separator {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    margin: 30px 0;
}

.manage-appointments-container {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 4px;
}

.manage-appointments-container h3 {
    margin-top: 0;
    color: #333;
}

.manage-appointments-container p {
    margin-bottom: 20px;
}
