@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #010;
}

.container {
    background: white;
    padding: 24px;
    margin: 5px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 16px;
}

.mdc-button {
    width: 100%;
    margin-top: 16px;
}

#status, #downloadStatus {
    margin-top: 16px;
    color: #555;
    font-weight: 500;
}