header {
    width: 100%;
}

header img {
    margin: 0 auto;
}

.game-info {
    background-color: #f9d856;
    border: 1px solid black;
    border-radius: 5px;
    padding: 10px;
}

form {
    margin: 10px;
    padding: 10px;
    text-align: center;
}

label {
    display: block;
    width: 100%;
}

input[type=text] {
    margin: 10px;
    padding: 10px;
    border: 1px solid black;
    border-radius: 5px;
    height: 30px;
    background-color: #e9e9ed;
}

select {
    margin: 10px;
    padding: 10px;
    border: 1px solid black;
    border-radius: 5px;
    height: 45px;
}

input[type=submit] {
    padding: 3px 5px;
    border-radius: 5px;
    background-color: red;
    color: white;
    cursor: pointer;
}

.alert-success {
    border-radius: 5px;
    padding: 5px;
    background-color: rgb(41, 107, 61);
    color: white;
    margin: 30px 0;
}

.alert-error {
    border-radius: 5px;
    padding: 5px;
    background-color: rgb(180, 24, 24);
    color: white;
    margin: 30px 0;
}

.alert-warning {
    border-radius: 5px;
    padding: 5px;
    background-color: rgb(234, 179, 8);
    color: white;
    margin: 30px 0;
}

header {
    width: 60%;
    margin: 0 auto;
}

.table-content {
    width: 100%;
    margin: 20px 0;
}

.table-content caption {
    background-color: green;
    color: white;
    border-radius: 5px 5px 0 0;
    font-weight: bold;
}

.table-content table {
    width: 60%;
    margin: 0 auto;
    border: 1px solid green;
    border-radius: 5px;
}

.table-content-pending {
    width: 100%;
    margin: 20px 0;
}

.table-content-pending caption {
    background-color: rgb(234, 179, 8);
    color: white;
    border-radius: 5px 5px 0 0;
    font-weight: bold;
}

.table-content-pending table {
    width: 60%;
    margin: 0 auto;
    border: 1px solid rgb(234, 179, 8);
    border-radius: 5px;
}

 tbody tr:nth-child(odd) {
    background-color:#eee;
}

.table-content .portero {
    background-color: rgb(196, 231, 196) !important;
    font-weight: bold;
}

.table-content-pending .portero {
    background-color: rgb(228, 224, 179) !important;
    font-weight: bold;
}

.table-content .left {
    text-align: left;
}

.table-content-pending .left {
    text-align: left;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 200px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.contenido-modal {
    position: relative;
    background-color: white;
    margin: auto;
    padding: 5px 20px 20px 20px;
    border-radius: 5px;
    width: 60%;
    -webkit-animation-name: animarsuperior;
    -webkit-animation-duration: 0.5s;
    animation-name: animarsuperior;
    animation-duration: 0.5s
}

.contenido-modal h2 {
    background-color: rgb(234, 179, 8);
    padding: 5px;
    border-radius: 5px;
    text-align: center;
}

@keyframes animarsuperior {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@-webkit-keyframes animarsuperior {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

.close {
    color: black;
    float: right;
    font-size: 30px;
    font-weight: bold;
    margin: -7px 10px;
}

.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#modalContent {
    margin-top: 20px;
}

#modalContent p {
    margin: 0 0 20px 0;
}

.submit-modal {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.radio {
    margin: 5px 10px 0 0;
}

.image {
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
}

.table-content .capa-flotante {
    position: absolute;
    width: 80px;
    border: 1px solid green;
    bottom: 1.5rem;
    left: 1.5rem;
}

.table-content-pending .capa-flotante {
    position: absolute;
    width: 80px;
    border: 1px solid rgb(234, 179, 8);
    bottom: 1.5rem;
    left: 1.5rem;
}

.left > div {
    float: left;
    margin-right: .5rem;
}

.left > span {
    float: left;
}

@media (min-width: 200px) and (max-width: 1024px) {
    .table-content, .table-content-pending {
        font-size: 12px;
    }

    .table-content table, .table-content-pending table {
        width: 100%;
    }

    .grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .col-span-1 {
        margin-bottom: 10px;
        font-size: 14px;
    }
}
