/*
 * ============================================
 *            COPYRIGHT RC-SERVERS.COM
 * ============================================
 * SUMMARY
 * --------------------------------------------
 * 1 - Vote Pages
 * --------------------------------------------
 */

@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/Roboto-Condensed-Light.woff2) format('woff2');
}

@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Roboto-Condensed-Regular.woff2) format('woff2');
}

@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/Roboto-Condensed-Bold.woff2) format('woff2');
}

.vote-container {
    font-family: "Roboto Condensed", Arial, sans-serif;
    color: rgb(173, 168, 162);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 38px;
    text-align: center;
    padding: 20px;
    background: rgba(32, 36, 32, 0.95) !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); 
    margin-bottom: 20px;
    margin-top: 20px;
}

.vote-heading {
    font-family: "Roboto Condensed", Arial, sans-serif;
    text-align: center;
    color: rgb(231, 224, 218);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 50px;
}

.vote-description {
    font-family: "Roboto Condensed", Arial, sans-serif;
    text-align: center;
    color: rgb(203, 197, 194);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
}

.vote-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    table-layout: fixed;
}

.vote-row {
    border-bottom: 2px solid rgb(61, 75, 39);
}

.vote-row:last-child {
    border-bottom: none;
}

.vote-info {
    color: rgb(173, 168, 162);
    padding: 15px;
    font-size: 20px;
    text-align: center;
    vertical-align: middle;
}

.vote-table th {
    background-color: rgb(88, 108, 57);
    color: rgb(220, 211, 202);
    text-align: center;
    padding: 10px;
    font-size: 22px;
}

.vote-table td a {
    color: rgb(166, 205, 99) !important;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    height: 100%;
    line-height: 20px;
}

.vote-table td a:hover {
    color: rgb(193, 193, 193);
}

.btn {
    border-radius: 0;
    border: 0;
    padding: 8px 14px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
}

.btn.btn-vote {
    background: rgb(61, 75, 39);
    color: rgb(166, 205, 99);
}
.btn.btn-vote:hover {
    background: rgb(88, 108, 57);
}


