@import url(https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);

body {
    background-color: #282828;
}

header,
footer {
    background-color: #eee;
    padding: 1em;
    text-align: center;
}

main {
    margin-top: 1em;
}

.wheel-container {
    width: 600px;
    height: 600px;
    margin: auto;
}

.active {
    background-color: blueviolet;
}

.hidden {
    display: none !important;
}

ul {
    list-style-type: none;
    margin-left: 200px;
    margin-right: 200px;
    padding-left: 0;
    overflow: hidden;
    background-color: #404040;
    border: 1px solid #808080;
}

li a,
.dropdown-header {
    display: inline-block;
    color: #D0D0D0;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.dropdown-header {
    cursor: default;
}

li {
    float: left;
    border-right: 1px solid #808080;
}

.last {
    float: right;
    border-left: 1px solid #808080;
}

li.dropdown {
    display: inline-block;
}

li a:hover:not(.active) {
    background-color: #333;
}

body {
    background-color: #282828;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    background-color: #404040;
    border-left: 1px solid #808080;
    border-right: 1px solid #808080;
    border-top: 1px solid #808080;
    z-index: 1;
}

.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-bottom: 1px solid #808080;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.full-menu {
    margin-left: 200px;
    margin-right: 200px;
    margin-bottom: 20px;
    padding: 5px;
    overflow: visible;
    background-color: #404040;
    border: 1px solid #808080;
    color: white;
}

.full-menu div label {
    padding: 2px;
    margin-left: 10px;
}

.full-menu div div input, .full-menu div div .choices {
    float: right;
    margin-right: 10px;
    margin-bottom: 4px;
}

.full-menu .list-container {
    gap: 50px;
}

.neon-button {
    font-size: 1.5rem;
    padding: 15px 30px;
    color: #fff;
    background: #111;
    border: 2px solid #0ff;
    border-radius: 10px;
    text-shadow: 0 0 5px #0ff;
    box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
    cursor: pointer;
    transition: 0.3s ease;
}

.neon-button:hover {
    box-shadow: 0 0 20px #0ff, 0 0 40px #0ff;
}

.wheel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 5px;
}

.options-menu {
    background-color: #404040;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #D0D0D0;
    font-family: sans-serif;
    max-width: 200px;
}

.options-menu h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.neon-button-small {
    font-size: 1rem;
    padding: 8px 16px;
    margin: 5px;
    color: #fff;
    background: #222;
    border: 1px solid #d6a4ff;
    border-radius: 8px;
    text-shadow: 0 0 1px #d6a4ff;
    box-shadow: 0 0 1px #d6a4ff, 0 0 2px #d6a4ff;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.neon-button-small:hover {
    box-shadow: 0 0 4px #d6a4ff, 0 0 8px #d6a4ff;
}

.neon-button-small.red {
    color: #FF4D4D;
    border: 1px solid #ff073a;
    text-shadow: 0 0 1px #ff073a;
    box-shadow: 0 0 1px #ff073a, 0 0 2px #ff073a;
}

.neon-button-small.red:hover {
    box-shadow: 0 0 4px #ff073a, 0 0 8px #ff073a;
}

.neon-button-small.green {
    color: #39ff14;
    border: 1px solid #39ff14;
    text-shadow: 0 0 1px #39ff14;
    box-shadow: 0 0 1px #39ff14, 0 0 2px #39ff14;
}

.neon-button-small.green:hover {
    box-shadow: 0 0 4px #39ff14, 0 0 8px #39ff14;
}

.borderless {
    border: none;
    background: none;
    box-shadow: none;
    text-decoration: underline;
    color: #D0D0D0;
}

.borderless:hover {
    box-shadow: none;
    color: #fff;
}

.options-menu div {
    margin: 5px;
}

select[multiple] {
    width: 200px;
    height: auto;
    border-radius: 8px;
    padding: 5px;
    font-size: 1rem;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 998;
}

.popup-content {
    background: #404040;
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    text-align: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    max-height: 90%;
    scrollbar-gutter: stable;
}

.popup-content .button-row {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

#performer-image {
    max-width: 300px;
    max-height: 300px;
    padding-bottom: 5px;
}

table {
    border-collapse: collapse;
    letter-spacing: 1px;
    border-left: none;
    margin: 5px !important;
}

th,
td {
    border: 1px solid black;
    padding: 8px 10px;
    color: #D0D0D0;
    background-color: #404040;
    vertical-align: middle !important;
}

th {
    background-color: #2b2b2b;
    /*position: sticky;
    top: 0;*/
}

#table-container {
    max-height: 500px;
    overflow-y: auto;
}

#list-container {
    margin-left: 200px;
    margin-right: 200px;
    border: 1px solid #808080;
    color: #D0D0D0;
    display: flex;
    gap: 10px;
}

caption {
    font-weight: bold;
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.performer-name {
    text-decoration: underline dotted;
    position: relative;
    cursor: pointer;
}

.performer-image {
    display: none;
    bottom: 60%;
    height: 150px;
    position: absolute;
}

.performer-name:hover .performer-image {
    display: block;
}

/* Dropdown container */
.choices__list--dropdown {
    background: #2d333b !important;
    color: #adbac7 !important;
    border: 1px solid #444c56 !important;
    border-radius: 8px;
    overflow: auto !important;
}

.choices__list--dropdown .choices__list {
    /*max-height: calc(5 * 40px) !important;
    overflow-y: auto;*/
    overflow: visible !important;
}

/* Individual selectable items */
.choices__item--selectable {
    background: #373e47 !important;
    color: #ffffff;
    transition: background 0.2s ease;
}

.choices__item {
    font-size: 14px !important;
}

/* Hover effect for items */
.choices__item--selectable:hover {
    background: #444c56 !important;
}

/* Input field styling */
.choices__input--cloned {
    background: #2a2a2a !important;
    color: #adbac7 !important;
    border: none;
}

.choices__inner {
    background-color: #2a2a2a !important;
    border: none !important;
    padding: 0px 0px 0px !important;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    /* spacing between tags */
    min-height: 0px !important;
    align-items: center;
}

/* Selected item indicator */
.choices__item--selected:after {
    color: #4dabf7;
}

.choices__list--single {
    padding: 0px !important;
}

.choices[data-type="select-one"] {
    border-style: none;
}

.choices[data-type="select-one"] .choices__inner {
    background: #404040 !important;
    border: none;
    border-radius: 0px;
}

.choices[data-type*="select-one"].is-open:after {
    /* Flip the arrow */
    border-color: transparent transparent darkmagenta !important;
    /* Change color when open */
}

.choices[data-type*="select-one"]:after {
    content: '' !important;
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
    border-top: 6px solid darkmagenta !important;
    /* Top arrow color */
}

.choices__list--single .choices__item {
    display: inline-block;
    vertical-align: middle;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 3.75px;
    margin-bottom: 0px;
    background-color: #005f75;
    border: 1px solid #d6a4ff;
    color: #fff;
    word-break: break-all;
    box-sizing: border-box;
}

input, select, .choices, textarea {
    background-color: #2a2a2a;
    color: white;
}

.list-container {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
    justify-content: center;
    align-items: center;
}


.list-container label {
    min-width: 120px;
    text-align: left;

}

.list-container input, select, .choices, .rate, .list-container textarea {
    flex: 1;
}

.category {
    margin-top: 5px;
    margin-bottom: 5px;
}

.choices {
    border-width: 2px;
    border-style: inset;
    border-color: light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    font-size: 16px !important;
}


/* Ratings widget */
.rate {
    display: inline-block;
    border: 0;
    justify-content: center;
    margin-right: 10px;
}

/* Hide radio */
.rate>input {
    display: none;
}

/* Order correctly by floating highest to the right */
.rate>label {
    float: right;
    min-width: 0px;
}

/* The star of the show */
.rate>label:before {
    display: inline-block;
    font-size: 2rem;
    padding: .3rem .2rem;
    margin: 0;
    cursor: pointer;
    font-family: FontAwesome;
    content: "\f005 ";
    /* full star */
}

/* Half star trick */
.rate .half:before {
    content: "\f089 ";
    /* half star no outline */
    position: absolute;
    padding-right: 0;
}

/* Click + hover color */
input:checked~label,
/* color current and previous stars on checked */
.rate>label:hover, label:hover~label, .star-full {
    color: #FFD700;
}

/* color previous stars on hover */
/* Hover highlights */
input:checked+label:hover, input:checked~label:hover,
/* highlight current and previous stars */
input:checked~label:hover~label,
/* highlight previous selected stars for new rating */
label:hover~input:checked~label

/* highlight previous selected stars */
    {
    color: #FFA500;
}

.star-empty {
    color: lightgray;
    -webkit-text-stroke: 0px lightgray !important;
}

.star-full, .star-empty {
    font-size: 24px;
    -webkit-text-stroke: 1px gold;
}

.star-wrapper {
    position: relative;
    display: inline-block;
    width: 21px;
    height: 26px;
}

.star {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.gold-fill {
    background: linear-gradient(to right, gold 50%, transparent 50%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-border {
    -webkit-text-stroke: 1px gold;
    clip-path: inset(0 50% 0 0);
    /* Show left half */
}

.gray-border {
    -webkit-text-stroke: 1px lightgray;
    clip-path: inset(0 0 0 50%);
    /* Show right half */
}

.tablesorter-dark td {
    font: 16px "Times New Roman", Times, serif;
    border-right: #333 2px solid;

}

.tablesorter-dark thead th {
    border-right: #333 2px solid;
}

td a {
    color: #00BFFF;
}