.sports-tips-widget {
    max-width: 350px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tips-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
}

.tip-card {
    background-color: #e8f5e9; /* Light green background */
    border: 1px solid #c8e6c9; /* Slightly darker green border */
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tip-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tip-time {
    font-size: 1.5em;
    font-weight: bold;
    color: #388e3c; /* Darker green for time */
    text-align: center; /* Centered time */
    margin-bottom: 10px;
    border-bottom: 1px solid #c8e6c9; /* Dividing line */
    padding-bottom: 5px;
}

.tip-content {
    display: flex;
    flex-direction: row; /* Horizontal layout */
    justify-content: space-between; /* Spread content across the row */
    align-items: center;
    gap: 10px; /* Add spacing between columns */
}

.tip-odds {
    font-size: 1.1em;
    color: #4caf50; /* Green color for odds */
    font-weight: bold;
    flex: 1; /* Allow room for the odds to fit properly */
    text-align: left; /* Align odds to the left */
}

.tip-odds span {
    font-weight: normal; /* Lighter font for "Tipped at:" */
}

.tip-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #388e3c; /* Darker green for the title */
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
    flex: 2; /* Allow more room for the title */
}

.tip-title:hover {
    color: #1b5e20; /* Darker green on hover */
    text-decoration: underline; /* Underline on hover */
}
