.login-page {
    background: #76b852; /* fallback for old browsers */
    background: rgb(141,194,111);
    background: linear-gradient(90deg, rgba(141,194,111,1) 0%, rgba(118,184,82,1) 50%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.login-form {
    padding: 8% 0 0;
    margin: auto;
    margin: 0 auto;
    max-width: 400px;
}


.login-form .form {
    background: #FFFFFF;
    margin: 0 auto 100px;
    padding: 45px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.login-form .form button {
    background: #4CAF50;
    color: #FFFFFF;
    width: 100%;
}

#menu .nav-link .fa {
    font-size: 13px;
}

.alert > ul {
    margin-bottom: 0;
}

.court-drag-area {
    min-height: 200px;
    border: 1px solid lightgray;
    max-height: 300px;
    overflow: auto;
}

.draggable-match {
    border: 1px solid gray;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.draggable-match.selected {
    border: 1px solid red;
}

.hour-area {
    list-style: none;
    margin: 0;
    padding: 0 0 0 25px;
    border-left: 1px solid #55A79A;
    position: relative;
    display: none;
}

.hour-area.show {
    display: block;
}

.hour-area--match {
    margin-bottom: 30px;
    position: relative;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.hour-area .hour-area--hours i {
    color: #55A79A;
    margin-left: -35px;
    margin-right: 35px;
}

.hour-area--empty-area {
    flex: 1;
}

.hour-area--empty-area > * {
    border: 1px solid #55A79A;
    width: 100%;
    padding: 15px;
    min-height: 80px;
}

.hour-area--empty-area > span {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.draggable-match + span {
    display: none;
}

.hour-area--header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.draggable-match--id {
    display: none;
}

.draggable-match--teams {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.draggable-match--teams > span {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.table-matchs .draggable-match {
    flex-direction: column;
}

.table-matchs .draggable-match .draggable-match--teams {
    //display: none;
    max-width: 100px;
    font-size: 13px;
}

.table-matchs .draggable-match--id {
    display: inline;
}

.table-matchs td.droppable-match {
    padding: 0;
    vertical-align: middle;
    text-align: center;
}

.droppable-match--placeholder {
    min-height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.table-matchs-overflow {
    max-height: 600px;
    overflow: scroll;
}

.matches-list .display-mobile {
    display: none;
}

@media(max-width: 480px) {

    .matches-list th {
        display: none;
    }

    .matches-list tr {
        display: flex;
        flex-direction: column;
    }

    .matches-list .display-mobile {
        display: inline-block;
    }

    .matches-list .display-mobile-results {
        display: block;
    }
}
