/* ==========================
   WHO WILL WIN WIDGET STYLES
   ========================== */

/* Header */
.www-header {
    background: #86b298;
    color: white;
    text-align: center;
    font-size: 22px;
    padding: 12px;
    border-radius: 10px 10px 0 0;
	margin: -20px -10px;
}

/* Widget Background */
.www-slider {
    background: #dff0d8;
    padding: 10px 10px 20px 10px;
    border-radius: 10px;
}

/* Competition */
.www-competition {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding-top: 35px;
	margin-bottom: -10px;
    color: #333;
}

/* Team Names */
.www-team-names {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: -20px;
    color: #333;
}

/* Buttons (1, X, 2) */
.www-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.www-vote-btn {
    flex: 1;
    padding: 14px;
    margin: 0 5px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.www-vote-btn[data-choice="1"] {
    background: #27ae60; /* Green */
}
.www-vote-btn[data-choice="X"] {
    background: #f39c12; /* Orange */
}
.www-vote-btn[data-choice="2"] {
    background: #e74c3c; /* Red */
}

.www-vote-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Odds */
.www-odds {
    font-size: 14px;
    font-weight: normal;
    color: white;
    margin-left: 5px;
}

/* Vote Result Box */
.www-result {
    display: none;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    background: #f8f8f8;
    margin-top: -15px;
    padding: 10px;
    border-radius: 6px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Vote Percentage Bar */
.www-vote-bar {
    display: flex;
    margin-top: 10px;
    height: 20px;
    border-radius: 6px;
    overflow: hidden;
    background: #ddd;
}

.www-vote-home {
    background: #27ae60;
    text-align: center;
    font-weight: bold;
    color: white;
}
.www-vote-draw {
    background: #f39c12;
    text-align: center;
    font-weight: bold;
    color: white;
}
.www-vote-away {
    background: #e74c3c;
    text-align: center;
    font-weight: bold;
    color: white;
}

/* Navigation Buttons */
.www-nav {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-top: 10px;
    color: #555;
}

/* Navigation wrapper to align arrows */
.www-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 0 10px;
}

/* Optional: Add padding or tweak arrow look */
.www-nav.prev {
    text-align: left;
}

.www-nav.next {
    text-align: right;
}

.www-nav:hover {
    color: #000;
    transform: scale(1.1);
}

/* BET NOW BUTTON */
.bet-now-btn {
    display: block;
    background: #ff7f00;
    color: white!important;
    padding: 5px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none!important;
    margin-top: 15px;
    text-align: center;
    width: 20%;
    margin-left: auto;
    margin-right: auto;
}

.bet-now-btn:hover {
    background: #e67e22;
    text-decoration: none;
}

/* Responsive Design */
@media screen and (max-width: 500px) {
    .www-slider {
        width: 100%;
        padding: 10px 10px 20px 10px;
    }
	
	.www-team-names {
		margin-bottom: -35px;
	}
    .www-vote-btn {
        font-size: 16px;
        padding: 12px;
    }
    .bet-now-btn {
        font-size: 14px;
        padding: 12px;
		width: 40%;
    }
}
