.oddsnews-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.oddsnews-card {
    background: #0d1117;
    border-radius: 12px;
    padding: 16px;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oddsnews-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

.oddsnews-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 15px;
}

.oddsnews-teams .vs {
    opacity: 0.6;
    font-weight: 400;
}

.oddsnews-odds {
    display: flex;
    justify-content: space-between;
    background: #161b22;
    border-radius: 8px;
    padding: 10px;
}

.oddsnews-odds div {
    flex: 1;
    text-align: center;
}

.oddsnews-odds strong {
    display: block;
    font-size: 18px;
    color: #00e676;
    margin-bottom: 2px;
}

.oddsnews-odds span {
    font-size: 12px;
    opacity: 0.7;
}

.oddsnews-update-time {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
    text-align: right;
}

.oddsnews-error,
.oddsnews-empty {
    background: #330000;
    color: #ffffff;
    padding: 12px;
    border-radius: 6px;
    margin: 10px 0;
}
