#tvoter-popup {
    position: fixed;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    z-index: 9999;
    max-width: 95%;
    width: 600px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    font-family: 'Segoe UI', sans-serif;
    animation: fadeIn 0.5s ease-in-out;
}

.tvoter-inner {
    position: relative;
    text-align: center;
}

.tvoter-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    background: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.tvoter-header {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.tvoter-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tvoter-option {
    flex: 1 1 40%;
    max-width: 180px;
    text-align: center;
}

.tvoter-option img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.tvoter-name {
    font-weight: bold;
    margin-top: 5px;
}

.tvoter-select {
    margin-top: 10px;
    padding: 6px 12px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.tvoter-select.selected {
    background-color: red;
}

.tvoter-submit {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 8px 12px;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
}

.tvoter-result {
    margin-top: 15px;
    font-size: 16px;
    color: #444;
}

.tvoter-result p strong {
    color: green;
    font-weight: bold;
    font-size: 20px;
}
