/* Public styles for Liga Manager Pro */




.lmp-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.lmp-table th,
.lmp-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.lmp-table th {
    background-color: #f2f2f2;
}

.lmp-team-logo-small {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.lmp-team-logo-large {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 10px;
}

.lmp-match-item,
.lmp-live-match-item {
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.lmp-match-teams,
.lmp-live-match-teams {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    text-align: center;
}

.lmp-match-teams span,
.lmp-live-match-teams span {
    margin: 0 10px;
}

.lmp-match-score,
.lmp-live-match-score {
    font-weight: bold;
    font-size: 1.2em;
}

.lmp-match-info,
.lmp-live-match-info {
    text-align: right;
    font-size: 0.9em;
    color: #666;
}

.lmp-match-status {
    font-weight: bold;
    margin-left: 10px;
}

.lmp-status-finished {
    color: green;
}

.lmp-status-live {
    color: red;
}

.lmp-status-halftime {
    color: orange;
}

.lmp-status-paused {
    color: blue;
}

.lmp-player-photo {
    max-width: 150px;
    height: auto;
    float: left;
    margin-right: 20px;
    border-radius: 5px;
}

.lmp-player-details ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lmp-player-details ul li {
    margin-bottom: 5px;
}

.lmp-news-thumbnail {
    float: left;
    margin-right: 15px;
}

.lmp-news-thumbnail img {
    max-width: 100px;
    height: auto;
}

.lmp-news-excerpt {
    margin-top: 5px;
    font-size: 0.9em;
    color: #555;
}

.lmp-read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}

.lmp-read-more:hover {
    background-color: #005177;
}

.lmp-highlight-team {
    background-color: #fffacd;
}

.lmp-match-events li {
    margin-bottom: 5px;
    border-bottom: 1px dotted #eee;
    padding-bottom: 5px;
}

.lmp-live-commentary p {
    font-style: italic;
    color: #777;
}


