#track-section {
    display: flex;
    justify-items: center;
    align-items: center;
    text-align: center;
}

#track-section h4 {
    font-family: sans-serif;
    letter-spacing: 2px !important;
}

#track-section .main {
    width: 370px;
    border-radius: 2px;
}

#track-section input {
    border: 1px solid rgb(127, 127, 127);
    border-radius: 0px;
}

#track-section input:focus {
    border: 1px solid rgb(56, 56, 56);
    box-shadow: none;
    border-radius: 0px;
}

#track-section button {
    box-shadow: none;
    border: 1px solid #737373;
    border-radius: 0px;
}

#track-section button:hover {
    border: 1px solid rgb(27, 27, 27);
    box-shadow: none;
    background-color: black;
    color: #ffffff;
}

.empty-trck {
    height: 34vh;
}

@media (max-width: 768px) {
    #track-section .main {
        width: 240px;
        border-radius: 2px;
    }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.email-container {
    background: #e1e1e1;
    margin: 20px auto;
    padding: 20px;
    max-width: 600px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
h1 {
    color: #333;
}
.details {
    margin: 20px 0;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}