@charset "utf-8";

        #choice-container {
            position: fixed;
            bottom: -30%; /* Start off-screen */
            left: 0;
            width: 100%;
            height: 30%;
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transition: bottom 0.5s ease-in-out; /* Animation */
        }

        #choice-container.show {
            bottom: 0; /* End position */
        }

        .choice-button {
            background-color: #007bff;
            border: none;
            color: white;
            padding: 10px 20px;
            margin: 10px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
        }

        .choice-button:hover {
            background-color: #0056b3;
        }