.year-title {
    color: #e91e63;
    font-size: 1.6em;
    font-weight: bold;
}

.spacer {
    height: 60px;
}

.draw-choice-container {
    display: flex;
    justify-content: space-between;
		font-size:0.9em;
	  margin: 50px 0px 30px 0px;
}

.draw-choice {
    width: 90px;
    text-align: center;
}

.draw-choice-element {
    font-weight: bold;
    display: block;
    padding: 6px;
    border: 1px solid #e91e63;
    border-radius: 5px;
    text-decoration: none;
    color: #e91e63;
}

.draw-choice-element.active,
.draw-choice-element:hover {
    background-color: #e91e63;
    color: #fff;
}

.printable {    
    margin: 30px 0px;
    text-align: right;
}

.draw-container {
    width: 100%;
}

.match {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border: 2px solid #e91e63;
    margin-bottom: 10px; /* Default gap for odd containers */
    background-color: #fff0f5;
}

.player-scores {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.player {
    width: 70%;
    padding: 10px;
    text-align: left;
}

.player a {

    color: #000;
		text-decoration: underline;
}

.scores {
    width: 30%;
    display: flex;
    justify-content: space-around;
    text-align: right;
    align-items: center; /* Center align the image */
}

.set {
    width: 40px;
    text-align: center;
}

.scores img {
    margin-left: 10px;
    vertical-align: middle; /* Vertically align the image */
}

.draw-container.even .match {
    margin-bottom: 60px; /* Larger gap for even containers */
}

.winner {
    font-weight:bold;
    font-size: 130%;
    color: #e91e63;
}

.winner a {
    color: #e91e63;
}


.winner-icon {
    width: 30px;
    vertical-align: middle;
}
