body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
	background-color: #333;
    color: white;
}

a{
	color: red;
	text-decoration: none;
}
.logo {
    height: 96px;
}

.input-group {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 5px;
	border: 1px #333 solid;
    border-radius: 4px;
}

.input-group .material-icons {
    margin-right: 5px;
    color: #333;
}

button[type="submit"] {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

.language-selector button {
    margin-left: 10px;
    background-color: #555;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.language-selector button:hover {
    background-color: #777;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.tracking-info {
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

.main-status-box {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.status-box {
    background-color: #f9f9f9;
    padding: 20px;
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.status-list {
    list-style-type: none;
    padding: 0;
}

.status-list li {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.status-list .material-icons {
    font-size: 36px;
    margin-right: 10px;
}

.status-list div {
    text-align: left;
}

.status-list span {
    display: block;
    font-weight: bold;
}

.status-list small {
    display: block;
    color: #777;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
}

input[type="text"] {
    padding: 10px;
    border: none;
    width: 200px;
}
@media (max-width: 768px) {
    .tracking-info {
        width: 95%;
    }
	input[type="text"] {
    padding: 10px;
    border: none;
    width: 80px;
	max-width: 80px;
}
}