body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

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

h1 {
    color: #333;
    margin-bottom: 10px;
}

p {
    color: #666;
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Adds space between buttons */
}

.button {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.drive-button {
    background-color: #4285F4; /* Google Drive blue */
}

.drive-button:hover {
    background-color: #2b70f0;
}

.direct-button {
    background-color: #28a745; /* Green for direct download */
}

.direct-button:hover {
    background-color: #218838;
}
