

body.main {
  background-image: url("bg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: right bottom;
}

.ploggedInMenuBar {
    align-content: space-evenly;
    padding: 10px;
    display: grid;
    grid-template-columns: auto auto auto auto;
}

.cloggedInMenuBar {
    align-content: space-evenly;
    padding: 10px;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
}

/*** for evnet scores and options views **/

.sortable {
    border: 1px solid black;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
}

thead {
  position: sticky;
  top: 0px;
}
.sortable th {
    border: 1px solid black;
    background-color: lightblue;
    padding: 3px 3px 3px 3px;
}


.sortable td {
    border: 1px solid black;
    padding: 3px 3px 3px 3px;
    text-align: center;
}


.total {
    border: 1px solid black;
    padding: 3px 3px 3px 3px;
    background-color: lightgreen;
    text-align: center;
}

.sortable tr:nth-child(even)
{
    background-color: #f2f2f2;
}

.clubTitle {
        font-weight:bold;
        text-align:center;
}

.showTitle {
    text-align:center;
    font-size:20px;
}

/** end of view params **/

.titleBar {
    text-align:center;
}

.contentCenter {
    min-height:500px;
    text-align:center;
}

.content {
    min-height:500px;
}

.messageSpan {
    font-size:12px;
    color:purple;
    font-weight:bold;
}



.helpLink {
    cursor:pointer;
    color:blue;
    
}

.helpLink:hover {
    font-weight:bold;
}

.genLink {
    color:blue;
    font-weight:bold;
    text-decoration: none;
}

