/* Basic Reset & Body Styling */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #f4f7f6; /* Light gray background */
    color: #333; /* Dark text */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    line-height: 1.6;
    text-align: center;
}
/* Container for main content */
.container {
    background-color: #ffffff; /* White background for the content box */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin: 20px;
    max-width: 700px;
    width: 100%;
    box-sizing: border-box; /* Include padding in element's total width and height */
    animation: fadeIn 0.8s ease-out; /* Simple fade-in animation */
}
/* Logo Styling */
.logo {
    margin-bottom: 30px;
}
.logo img {
    max-width: 180px; /* Adjust as needed */
    height: auto;
    display: block; /* Remove extra space below image */
    margin: 0 auto; /* Center the image */
}
/* Heading */
h1 {
    color: #2c3e50; /* Dark blue/gray for heading */
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}
/* Paragraphs */
p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}
strong {
    color: #007bff; /* A distinct color for the ETA */
}
/* Actions section */
.actions {
    margin-top: 30px;
    margin-bottom: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}
.actions p {
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}
.links {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center;
    gap: 15px; /* Space between buttons */
}
/* Button Styling */
.button {
    display: inline-block;
    background-color: #007bff; /* Primary brand color */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap; /* Prevent text wrapping on buttons */
}
.button:hover {
    background-color: #0056b3; /* Darker shade on hover */
    transform: translateY(-2px); /* Slight lift effect */
}
.apology {
    font-style: italic;
    color: #777;
    margin-top: 30px;
    font-size: 0.95em;
}
.thank-you {
    font-weight: 500;
    color: #333;
    margin-top: 10px;
}
/* Footer */
footer {
    margin-top: auto; /* Pushes footer to the bottom */
    padding: 20px;
    color: #888;
    font-size: 0.9em;
    width: 100%;
}
/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    p {
        font-size: 1em;
    }
    .container {
        padding: 30px 20px;
    }
    .links {
        flex-direction: column; /* Stack buttons vertically on small screens */
        align-items: center;
    }
    .button {
        width: 80%; /* Make buttons wider on small screens */
        max-width: 300px;
    }
}
/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}