body {
    background-image: url('front.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    font-size: 16px; /* Adjust as needed for better mobile readability */
}

h2 {
    color: #ffffff;
}

p {
    color: #ffffff;
}

form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
}

input[type="text"] {
    width: 300px;
    padding: 8px;
}

/* Adjust the width for the search and save bars */
.search-container form input[type="text"],
.search-container form button,
form[name="save_new_customer_form"] input[type="text"],
form[name="save_new_customer_form"] button {
    width: 300px; /* Same width as the name bar */
}

button {
    padding: 8px 12px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 5px;
    color: #333;
}

a {
    color: #4caf50;
    text-decoration: none;
}

a:hover {
    color: #45a049;
}

/* Responsive styles for mobile devices */
@media only screen and (max-width: 600px) {
    h2 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    form {
        width: 80%; /* Adjust the width as needed */
        max-width: 300px; /* You can use max-width for a more controlled layout */
        margin: 0 auto; /* Center the form horizontally */
    }

    input[type="text"] {
        width: 100%;
    }

    button {
        width: 100%;
    }

    ul {
        padding-left: 20px;
    }
}
