body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
}

form {
    text-align: center;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

button {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #45a049;
}


/*  */


/* static/styles.css */
.tracking-steps {
    background-color: #6EB1EC;
    padding: 10px;
}

.tracking-steps strong {
    font-size: 12px;
}


/* ..====================================== . */

/* ... your existing styles ... */

.container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container label {
    margin-bottom: 10px;
}

.container input {
    width: 300px; /* Adjust the width as needed */
    height: 30px; /* Adjust the height as needed */
    padding: 5px;
    margin-bottom: 10px;
}

.container button {
    width: 100px; /* Adjust the width as needed */
    height: 30px; /* Adjust the height as needed */
}

/* ..====================================== . */




.header {
    background-color: #B2C8E2;
    padding: 20px;
    text-align: left; /* Align content to the left */
    display: flex;
    align-items: center; /* Center items vertically */
}

.header-content {
    flex: 1; /* Allow header-content to take remaining space */
    text-align: center; /* Center text horizontally */
}


.header h1 {
    margin: 0;
    color: #fff; /* White text color */
}



.logo {
    max-width: 100px; /* Adjust the max-width as needed */
    height: auto;
    margin-right: 10px; /* Add margin for spacing */
    margin-left: 20px; /* Adjust the margin to move the logo more to the left */
}




/* static/styles.css */

.footer {
    background-color: #B2C8E2;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

