.dynamic-odds {
    max-width: 600px;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;
}
.odds-event {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    background: inherit;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.odds-event h4 {
    background: #0d47a1;
    color: white;
    padding: 10px;
    margin: 0;
    font-size: 1.2em;
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.odds-header {
    margin-bottom: 0px;
}
.odds-content {
    padding: 20px 15px 10px; /* Increased top padding to separate from header */
}
.odds-label.odds-top {
    margin: 0 0 10px 0;
    font-weight: bold;
    color: #2980b9;
}
.odds-label.odds-bottom {
    margin: 10px 0 0; /* Separate from odds line, minimal bottom margin */
    font-weight: bold;
    color: #2980b9;
}
.odds-bookmaker {
    font-style: italic;
    color: #999;
    margin-left: 5px;
}
.odds-line {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #eee;
    margin: 0 0 10px;
}
.odds-value {
    padding: 3px 8px;
    background-color: #e8f4f8;
    border-radius: 4px;
    display: inline-block;
    color: #2c3e50;
    font-weight: bold;
    text-decoration: none;
}
.odds-affiliate-link {
    text-decoration: none;    
    background: #e8f4f8;
    color: #2c3e50;
    transition: all 0.2s;
    padding: 3px 8px;
    border-radius: 20px;
    text-decoration: none;
}
.odds-affiliate-link:hover {
    background-color: #2980b9;
    color: white;
    text-decoration: none;
    transform: scale(1.05);
}
