body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    /*overflow: hidden;*/
}

#top-bar {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#user-info {
    display: flex;
    align-items: center;
    margin: 5px 20px;
}

#user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

iframe {
    width: 100%;
    height: calc(100vh - 50px);
    border: none;
}

#auth-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

#sign-in-google {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

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

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