.appbar {
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    flex-shrink: 0;
    position: fixed;
    z-index: 1100;
    top: 0px;
    left: auto;
    right: 0px;
    --AppBar-background: #b02519;
    --AppBar-color: #fff;
    background-color: rgb(255, 255, 255);
    color: rgb(176, 37, 25);
    width: 100%;
    height: 70px;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.toolbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    align-content: center;
    flex-wrap: nowrap;
}

.left-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-link {
    text-decoration: none;
}

.logo {
    width: 100px;
    height: 55px;
    object-fit: scale-down;
}

.location-text {
    font-size: 12px;
    color: #b02519;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.navbar li {
    padding: 0;
}

.navbar a {
    text-decoration: none;
    color: #b02519;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
}

.right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 0;
}

.logo-small {
    width: 55px;
    height: auto;
}

.contact-number {
    font-size: 16px;
    color: #B02519;
    font-weight: bold;
    margin-bottom: 0 !important;
}

body {
    font-family: 'Roboto', Helvetica, Arial, sans-serif !important;
    margin: 0;
    padding-top: 70px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

/* Center content vertically and horizontally */
main.container .content {
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.share-cust {
    width: 30%;
}

/* Footer */
footer {
    background: #343a40;
    color: white;
    padding: 20px;
    text-align: center;
}

/* For smaller screens (Mobile devices) */
@media (max-width: 768px) {
    main.container {
        padding: 10px;
    }

    main.container .content {
        padding: 20px;
    }
}