@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap");

.toast-message,
.headerCopyright {
    font-family: "Ubuntu", sans-serif;
}

#loginForm {
    font-family: "Montserrat", sans-serif;
}

#header_brand {
    display: flex;
    align-items: baseline;
    justify-content: space-evenly;
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

#header_brand small {
    margin-left: 4px;
    font-weight: 600;
    font-size: 0.8em;
}

@media (max-width: 640px) {
    #header_brand {
        font-size: 0.9rem;
    }
}

#product_image {
    width: 100%;
    height: auto;
}

input[type="file"] {
    border: 1px solid #4c4b4b;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
    font-family: "Montserrat", sans-serif;
}

/* Page pagination */

.pagination {
    clear: both;
    position: relative;
    font-size: 11px;
    text-align: center;
}

.pagination span, .pagination a {
    display: inline-block;
    margin: 8px 8px 8px 0;
    padding: 6px 9px 5px 9px;
    text-decoration: none;
    color: #ddd;
    background: #222;
}

.pagination .current {
    padding: 6px 9px 5px 9px;
    font-weight: bold;
    background: #D42E63;
}

.navigation {
    margin-top: 24px;
}

/* Page Pagination End */

/* Add Appointment AutoComplete */

.suggestion-dropdown {
    max-height: 200px;
    overflow-y: auto;
}

.suggestion-item:hover {
    background-color: #f2f2f2;
}

#appointment_fullName {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#appointment_phoneNumber {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
}

.highlight {
    animation: highlight 3s ease-in-out;
    color: #fff;
}

@keyframes highlight {
    from {
        background-color: #D42E63;
    }
    to {
        background-color: white;
    }
}


/* Add Appointment AutoComplete End */