body{
    margin-top: 60px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

form label {
    font-weight: bold;
}

form input {
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.remove-item {
    background: none;
    border: none;
    font-size: 18px;
    color: red;
    cursor: pointer;
}

.remove-item:hover {
    color: darkred;
}

form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
}

form button:hover {
    background-color: #45a049;
}

.checkout-container {
    margin: 20px;
}

#track-order-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

#track-order-section h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

#order-code {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

#track-order {
    margin-top: 10px;
    padding: 10px 15px;
    border: none;
    background-color: yellowgreen;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#track-order:hover {
    background-color: green;
}

#order-status {
    margin-top: 15px;
    font-weight: bold;
    font-size: 18px;
    color: #555;
}

#clear-cart {
    background-color: #d9534f;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s;
    margin-top: 10px;
    display: block;
    width: 15%;
    text-align: center;
}

#clear-cart:hover {
    background-color: #c9302c;
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    #clear-cart {
    background-color: #d9534f;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s;
    margin-top: 10px;
    display: block;
    width: 30%;
    text-align: center;
}

#clear-cart:hover {
    background-color: #c9302c;
    transform: scale(1.05);
}
}
