#full-poll {
    background-color: var(--color-primary-a10);
    padding: 20px;
    border-radius: 16px;
    font-family: 'Circular Spotify';
    color: var(--color-text-1);
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    display: none;
}

#full-poll h1, #full-poll h2, #full-poll h3 {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 8px;
}

#full-poll input, #full-poll button {
    font-family: 'Circular Spotify';
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    font-size: 16px;
}

#full-poll button {
    background-color: var(--color-selected-1);
    color: var(--color-text-1);
    border: none;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    border-radius: 16px;
    margin-bottom: 0;
}

#full-poll button:hover {
    background-color: var(--color-selected-2);
}

#full-poll button:active {
    background-color: var(--color-visited-1);
}

#full-poll input[type="radio"] {
    height: 16px;
    display: none;
}

#full-poll label {
    padding: 10px;
    cursor: pointer;
    background-color: var(--color-primary-a10);
    transition: all 0.3s, color 0.3s;
    font-size: 16px;
    user-select: none;
    border-bottom: 2px solid var(--color-primary-a20);
    display: flex;
}

#full-poll label {
    padding: 0;
}

#full-poll label p:first-child {
    color: var(--color-primary-a30);
    margin-right: 0;
    margin-left: 0;
    width: 56px;
    text-align: center;
    transition: all 0.3s;
}

#full-poll label p:last-child {
    margin-left: 0;
}


#poll-options-div label:hover {
    background-color: var(--color-primary-a20);
}

#poll-options-div label:last-of-type {
    border-radius: 0 0 16px 16px;
    border-bottom: 0;
}

#poll-options-div label:first-of-type {
    border-radius: 16px 16px 0 0;
}

#poll-options-div input[type="radio"]:checked + label {
    background-color: var(--color-selected-2);
    color: var(--color-text-1);
}

#poll-options-div input[type="radio"]:checked + label p:first-child {
    color: var(--color-selected-3);
}

#poll-options-div {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.time_left {
    color: var(--color-primary-a30);
    margin-left: 0;
    margin-bottom: 0;
}

#poll_submit_div, #poll_results_div {
    border-radius: 16px;
    padding: 16px;
    background-color: var(--color-primary-a0);
}

#poll-container {
    margin-bottom: 16px;
}

#full-poll #poll_status_div {
    height: 0;
    overflow: hidden;
    transition: all 1s ease-in-out;
}

#full-poll #poll_status_text {
    margin-left: 0;
    margin-top: 16px;
}

#poll_results {
    background-color: var(--color-primary-a10);
    transition: all 0.3s, color 0.3s;
    font-size: 16px;
    user-select: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 16px;
}

#poll_results p {
    margin: 0;
    border-bottom: 2px solid var(--color-primary-a20);
    padding: 16px;
}

#poll_results p:last-child {
    border-radius: 0 0 16px 16px;
    border-bottom: 0;
}

#poll_results p:first-of-type {
    border-radius: 16px 16px 0 0;
}