/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    color: #007BFF;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.form-label {
    font-size: 18px;
    margin-bottom: 10px;
    color: #555;
}

input[type="text"] {
    padding: 15px;
    font-size: 18px;
    border: 2px solid #ccc;
    border-radius: 50px;
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus {
    border-color: #007BFF;
}

button {
    padding: 15px 40px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    background: #007BFF;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    background: #0056b3;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#order-details {
    text-align: left;
    margin-top: 20px;
}

.info-box {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

h2, h3 {
    color: #007BFF;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    margin: 10px 0;
    font-size: 18px;
    line-height: 1.5;
}

ul.timeline {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

ul.timeline li {
    background: #e9e9e9;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    position: relative;
    padding-left: 50px;
    transition: background 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

ul.timeline li:hover {
    background: #d3d3d3;
}

ul.timeline li::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 18px;
    width: 16px;
    height: 16px;
    background: #007BFF;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

ul.timeline li .date {
    font-weight: bold;
    color: #555;
    font-size: 16px;
}

ul.timeline li .status {
    display: inline-block;
    margin-left: 10px;
    font-weight: 500;
    font-size: 16px;
}

@media (max-width: 600px) {
    .container {
        width: 90%;
        padding: 20px;
    }

    input[type="text"], button {
        width: 100%;
    }

    .info-box {
        padding: 15px;
    }
}