/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    padding: 20px;
}

h1 {
    text-align: center;
    font-size: 36px;
    color: #ff6d6d; /* Soft red color */
    margin-bottom: 20px;
}

table {
    width: 50vw; /* Slightly smaller table */
    margin: 0 auto; /* Remove margin for a bit more compact look */
    border-collapse: separate;
    border-spacing: 5px;
    border: 2px solid #ff6d6d; /* Soft red border */
    border-radius: 10px; /* Rounded corners */
    background-color: white;
    padding: 0;
}

th, td {
    border: 1px solid #ffbf81; /* Light orange border */
    padding: 15px;
    text-align: center;
    background-color: #fff;
}

th {
    background-color: #ff7a7a; /* Lighter red background for table header */
    color: rgb(0, 0, 0); /* White text color for visibility */
    font-size: 20px;
}

.logo {
    height: 80px; /* Larger logo for more visibility */
}

.footer {
    font-size: 1em;
    text-align: center;
    color: #ff6d6d;
    margin-top: 20px;
    background-color: rgba(196, 199, 25, 0.5);
    padding: 10px;
    width: 70%;
    margin: auto;
    border-radius: 4.5%;
}

.footer pe {
    font-size: 2vw;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select {
    padding: 10px;
    border: 2px solid #ff6d6d; /* Soft red border */
    border-radius: 5px;
    background-color: #fff;
    color: #ff6d6d;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    background-color: #ff6d6d; /* Soft red button */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.removeButton {
    background-color: #ff6d6d;
    color: white;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.red {
    background-color: #ff6d6d;
    color: white;
}

.orange {
    background-color: #ffbf81; /* Light orange */
    color: white;
}

.yellow {
    background-color: #ffeb99; /* Soft yellow */
    color: #000; /* Black text */
}

/* Add more classes and styles as needed for different sections or elements on your bulk order form page. */

.loading-container {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.button-container {
    text-align: center; /* Centers the button horizontally */
}

.submit-button {
    display: inline-block; /* Keeps the button inline-block, with automatic horizontal centering */
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 2rem;
}