body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2; /* Match with the cart page background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background-color: #ffffff; /* Match the cart container background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

h1 {
    font-size: 28px;
    color: #333333; /* Match the cart page heading color */
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    color: #666666; /* Match the cart page text color */
    margin-bottom: 30px;
}

.home-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* Match the button color on the cart page */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.home-button:hover {
    background-color: #0056b3; /* Match hover effect color on cart page */
}

.navbar-spacing {
    height: 60px; /* Adjust as per your existing navbar height */
}

