/* Basic styling for the Mirror App */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f8ff;
}

.container {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

h1 {
    font-size: 24px;
    color: #333;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
}

button:hover {
    background-color: #0056b3;
}

#imageContainer {
    margin-top: 20px;
}

#randomImage {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
    margin-top: 10px;
}

#message {
    font-size: 18px;
    color: #28a745;
    margin-top: 10px;
}
