body {
    margin: 0px;
    background: #ff9100;
    color: #ccc;
    font-family: Arial, Helvetica, sans-serif;
    cursor: url("/cursor.png"), pointer !important;
}
body > svg,
body > div:has(svg) {
    background-color: #181818;
}

body > div > main {
    min-height: calc(100vh - 320px);
    height: auto;
    color: #ccc;
    background-color: #181818;
}

main > div {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    font-size: 20px;
    width: calc(100% - 40px);
}

header > div {
    background: #181818;
    width: 80%;
    max-width: 500px;
    margin: 20px auto;
    height: 20px;
    border-radius: 20px;
    padding: 10px;
    line-height: 20px;
    display: flex;
    user-select: none;
}

header > div > .status-text {
    flex-grow: 1;
    font-size: 14px;
    color: #ccc;
}

header > div > div:last-child {
    font-weight: bold;
}

.status {
    width: 12px;
    height: 12px;
    border-radius: 12px;
    margin-right: 10px;
    margin-top: 4px;
    background-color: var(--color);
    position: relative;
    --color: #9e9e9e;
}

.status.yes {
    --color: #4caf50;
}
.status.no {
    --color: #f44336;
}

/* Add pulsing animation for status */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.status::after {
    position: absolute;
    top: -4px;
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 12px;
    margin-right: 10px;
    margin-top: 4px;
    background-color: var(--color);
    animation: pulse 1.5s infinite ease-in-out;
}

label {
    display: block;
}

input[type="radio"] {
    display: none;
}

label {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    cursor: inherit;
    transition:
        background-color 0.3s,
        color 0.3s;
    user-select: none;
    margin: 10px;
}

label:has(input[type="radio"]:checked) {
    background-color: #ff9100;
    color: #181818;
    border-color: #ff9100;
}

div.options {
    display: flex;
    /* auto break */
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    div.options > label {
        min-width: calc(100% - 65px);
        margin-bottom: 10px;
    }

    h2 {
        text-align: center;
    }
}

#other-participants {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

#other-participants > div {
    display: flex;

    height: 20px;
    line-height: 20px;
    margin-bottom: 10px;
}

blockquote {
    border-left: 4px solid #ff9100;
    margin: 20px 0px;
    padding: 10px;
    color: #ddd;
    font-style: italic;
    border-radius: 4px;
}

.plan > div {
    border-left: 4px solid #ff9100;
    padding: 20px;
    position: relative;
}

.plan > div:has(span)::after {
    content: "";
    display: block;
    position: absolute;
    top: 22px;
    left: -11px;
    width: 10px;
    height: 10px;
    background-color: #181818;
    border: 4px solid #ff9100;
    border-radius: 10px;
}

.plan > div > span {
    color: #ff9100;
}

.plan > div > div {
    margin-top: 10px;
    padding-top: 10px;
}

.plan > div > .participants > div {
    display: flex;
    height: 20px;
    line-height: 20px;
    margin-bottom: 10px;
}

a {
    color: #ff9100;
}
