/* General Container Styles */
.wct-container {
    background: #D3D3D3;
    padding: 40px 30px 30px 30px;
    text-align: center;
}

/* Paragraphs and Labels */
.wct-para {
    margin: 20px;
}
.wct-label {
    font-weight: bold;
}

/* ===============================
   GENDER SELECT DROPDOWN
================================ */
.wct-gender-select {
    margin-bottom: 25px;
    text-align: center;
}

.wct-gender-select label {
    font-weight: bold;
    margin-right: 10px;
}

.wct-gender-select select {
    padding: 8px 14px;
}

/* Button Styles */
.wct-button {
    text-decoration: none;
    background: #000;
    border: 0px;
    border-radius: 5px;
    padding: 12px 35px;
    color: #ffffff !important;
    font-family: sans-serif;
    margin-bottom: 40px;
}
.wct-button:hover {
    text-decoration: none;
    background: #fff;
    color: #000 !important;
}

/* Form Selectors and Headings */
.wct-container select {
    height: 3em;
}
.wct-container h2 {
    margin-bottom: 40px;
}
.wct-container .read-story {
    margin-top: 0;
    margin-bottom: 40px;
}

/* Flex Layouts */
.wct-flex {
    display: flex;
}
.wct-col, .wct-result-col {
    width: 50%;
    padding: 0 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.wct-col > *, .wct-result-col > * {
    margin-bottom: 20px;
}

/* Details Display */
.wct-col > div > b {
    display: inline-block;
    width: 45%;
    text-align: left;
}
.wct-col > div > span {
    display: inline-block;
    width: 45%;
    text-align: right;
}

/* Projected Winner Section */
.wct-projected-winner {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

/* Common Opponent Results */
.wct-common-opponents {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    text-align: left;
}
.wct-common-opponent {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.wct-common-opponent span {
    font-size: 14px;
    color: #333;
}
.wct-common-opponent span.wct-result {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #333;
}

/* Head-to-Head Section */
.wct-head-to-head {
    font-size: 14px;
    margin-top: 0px;
    padding-top: 0px;
    text-align: left;
}
.wct-head-to-head-list {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.wct-head-to-head span {
    font-size: 14px;
    color: #333;
}
.wct-common-opponent-list {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
    font-size: 14px;
    color: #333;
}
.wct-common-opponent-list span {
    font-size: 14px;
    color: #333;
}
