/* main.css - combined + bootstrap-friendly tweaks */

body {
    font-family: sans-serif;
    background: #c0e2ff;
    padding: 10px 10px;
}

/* keep your link style but make it work on navbar list-group items too */
.link {
    text-decoration: none;
    color: #ffffff;
    background-color: #088642;
    padding: 5px;
    transition-duration: 0.3s;
    border-radius: 6px;
}

.link:hover {
    color: #ffffff;
    background-color: rgba(10, 129, 65, 0.6);
    transition-duration: 0.3s;
}

.link:visited {
    color: #9eefd5;
}

.header {
    color: red;
    height: 50px;
}

select {
    background: white;
    padding: 5px;
    border-radius: 5px;
    border-color: #76dcff;
}

/* center subheader and spacing */
.subheader {
    color: #0a8141;
    justify-self: center;
    height: 50px;
    font-size: 1.2rem;
}

p {
    justify-self: center;
}

/* table wrapper uses Bootstrap classes, small adjustments */
.standings-table {
    justify-self: center;
}

/* paragraph cards */
.paragraph1 {
    margin: 0;
    padding: 0;
    border: none;
}

.predictions {
    margin: 0;
    padding: 0;
    border: none;
}

.paragraph2 {
    margin: 0;
    padding: 0;
    border: none;
}

/* image container */
.sansiro {
    justify-self: center;
    max-height: 500px;
    padding: 10px;
}

/* default button style fallback */
button {
    color: white;
    background-color: #088642;
    border: none;
    padding: 5px;
    margin: 5px;
}

/* sort header cursor */
th.sortable {
    cursor: pointer;
    user-select: none;
}

/* small indicators for sort direction */
th.sortable.asc::after { content: " ▲"; }
th.sortable.desc::after { content: " ▼"; }

/* posted comments list-group items */
#postedComments .list-group-item {
    word-break: break-word;
}