.container {
    margin: 0 auto;
    display: flex;
    min-height: 50vh;
    max-height: 300vh;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
@media only screen and (max-width : 767px){
    .container {
        margin-top: 350px;
    }
}

.form-container {
    max-width: 770px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
}

h1 {
    text-align: center;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

label {
    width: 100px;
}

input[type="text"] {
    flex: 1;
    padding: 5px;
}

/* styles.css */

.enter-group{
    margin-top: 20px;
    margin-bottom: 20px;
}

#rankings-table{
    margin-top: 50px;
}

.button {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .button:hover {
    background-color: #0056b3;
  }
  
  .button:active {
    background-color: #003c80;
  }
  
  
footer {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(calc(50vw - 50%), -50%);
    color: transparent;
    background-color: transparent;
    z-index: 1000;
}

footer a {
    float: left;
    text-align: center;
    margin-left: 20px;
    font-size: 9px;
    color: white;
    z-index: 1000;
}

.popup{
    top: 50px;
    position: absolute;
    width: 99%;
    background-color: black;
    display: none;
}
#popup{
    width: 100%;
    height: 100%;
    color: white;
}
#popupexit{
    font-size: 25px;
    position: absolute;
    right: 15px;
    top: 5px;
    float: right;
    color: wheat;
    cursor: pointer;
}

.datainit{
    text-overflow: ellipsis;
}

#rankings-table-body tr td:nth-child(1):hover,
.nameCell:hover{
    border-bottom-style: dotted;
}

.enter-group{
    margin-top: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid black;
}

#btnSearchRecord{
    background-color: cadetblue;
}

.dynamicIframe{
    float: left;
    width: 49%;
}
@media only screen and (max-width : 767px){
    .dynamicIframe{
        width: 100%;
        margin-top: 20px;
    }
}