@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
body {
            margin: 0;
            padding: 0;
            background-color: #000000;
            color: #ffffff;
            font-family: 'Press Start 2P', monospace;
            font-size: 20px;
            line-height: 1.8;
            text-align: center;
        }

        input, select, textarea {
            font-family: 'Press Start 2P', monospace;
            font-size: 16px;
            padding: 10px;
            background-color: #111;
            color: white;
            border: 2px solid #fff;
            width: 80%;
            max-width: 400px;
        }

        label {
            display: block;
            margin-bottom: 10px;
        }

        button {
            font-family: 'Press Start 2P', monospace;
            background: none;
            border: 2px solid white;
            color: white;
            cursor: pointer;
        }

        button:hover {
            background: white;
            color: black;
        }

        #content {
            margin: 50px auto;
            max-width: 800px;
        }

.btn {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 12px 20px;
    text-decoration: none;
    font-family: 'Press Start 2P', monospace;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    margin: 5px;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background-color: #00ff00;
    color: #000;
}
.result-type-radio input[type="radio"] {
        width: 15px;
        height: 15px;
        margin-right: 10px;
        vertical-align: middle;
 }
 .result-type-radio label {
        display: flex;
        align-items: center;
        margin-bottom: 5px;
 }
 #result-type-container {
        transition: opacity 0.3s ease;
 }
 #result-type-container.hidden {
        opacity: 0;
        height: 0;
        overflow: hidden;
        margin: 0;
}

.tooltip-icon {
    position: relative;
    cursor: pointer;
    font-weight: bold;
}

.tooltip-text {
    visibility: hidden;
    width: 250px;
    background-color: #222;
    color: #fff;
    text-align: left;
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 12px;
}

.tooltip-icon:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.button-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .button-panel {
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        flex-direction: row;
        justify-content: space-around;
        background: rgba(255, 255, 255, 0.9);
        padding: 10px 0;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    }

    .button-panel .btn {
        margin: 0 5px;
        font-size: 14px;
        padding: 5px 10px;
    }
}

.form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

