#section-personal-meetings {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Main Card */
.meeting-card {
    width: 100%;
    max-width: 428px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
}

/* Title */
.card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    line-height: 24px;
}

/* Divider */
.divider {
    height: 1px;
    background-color: #e9ecef;
    width: 100%;
    margin-top: 4px;
    margin-bottom: 4px;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
}

.stat-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    border-radius: 8px;
    padding: 8px;
    /* height: 99px; */
    box-sizing: border-box;

    background-color: #e9ecef;
    color: #000000;
    flex-grow: 1;
}
.stat-box:first-child {
    justify-content: end;
    background-color: #1e90ff;
    color: #ffffff;
    flex-grow: 2;
}

.stat-box:last-child {
    justify-content: start;
    background-color: #e63946;
    color: #ffffff;
    flex-grow: 2;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}



.stat-number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 400;
}

.text-dark {
    color: #000000;
}

/* Match List */
.match-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.match-item {
    background-color: #e9ecef;
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.match-item.home {
    box-shadow: inset 12px 0px 0px 0px var(--home);
}
.match-item.home .score-digit:first-child,
.match-item.home .pair-team:first-child > span {
    font-weight: bold;
}
.match-item.away {
    box-shadow: inset -12px 0px 0px 0px var(--away);
}
.match-item.away .score-digit:last-child,
.match-item.away .pair-team:last-child > span {
    font-weight: bold;
}

.match-item .match-date {
    font-size: 12px;
    color: #000000;
    text-align: center;
    opacity: 0.8;
}

.match-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pair-team {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
}

.pair-team:first-child {
    text-align: right;
}
.pair-team:first-child .dot {
    background-color: var(--home);
}

.pair-team:last-child {
    flex-direction: row-reverse;
    text-align: left;
}
.pair-team:last-child .dot {
    background-color: var(--away);
}

.pair-team-name {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
    /* white-space: nowrap; */
    overflow: hidden;
    /* text-overflow: ellipsis; */
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
            line-clamp: 1; 
    -webkit-box-orient: vertical;
}

.score-badge {
    background-color: #1a1a2e;
    border-radius: 4px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 59px;
    box-sizing: border-box;
}

.score-digit,
.score-divider {
    color: #ffffff;
    font-size: 14px;
    /* font-weight: 700; */
    line-height: 1;
}

/* Footer */
.card-footer {
    text-align: center;
    padding-top: 10px;
}

.show-all-link {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.show-all-link:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 380px) {
    .pair-team-name {
        font-size: 12px;
    }

    .stat-number {
        font-size: 32px;
    }
}