body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: "Shadows Into Light Two", cursive;
}

.container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.card {
    text-align: center;
}

.divider {
    width: 1px;
    background: #ccc;
    align-self: stretch;
}

img {
    width: 200px;
    height: 200px;
}

#session-id {
    cursor: pointer;
    word-break: break-all;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 6px;
    font-family: monospace;
    display: inline-block;
    max-width: 200px;
    transition: background 0.3s;
}

.back-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.back-btn:hover {
    background: #555;
}

