/* Bonuses List Widget Container */
.bonuses-list-widget-container {
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Grid Container */
.bonuses-list-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Header */
.bonuses-list-header {
    background-color: #17213e;
    color: #fff !important;
    margin: 0;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
	margin-bottom:0px;
}

/* Disclaimer */
.bonuses-list-disclaimer {
    background-color: #f0f0f0;
    padding: 8px 16px;
    font-size: 11px;
    color: #666;
    text-align: left;
}

.bonuses-list-disclaimer a {
    color: #2fb682;
    text-decoration: none;
}

.bonuses-list-disclaimer a:hover {
    text-decoration: underline;
}

/* Two Column Layout */
.bonuses-list-grid.two-columns {
    flex-direction: row;
    flex-wrap: wrap;
}

.bonuses-list-grid.two-columns .bonuses-list-header,
.bonuses-list-grid.two-columns .bonuses-list-disclaimer {
    width: 100%;
	margin-bottom:0px;
}

.bonuses-list-grid.two-columns .bonus-list-item {
    width: 50%;
    border-right: 1px solid #e0e0e0;
}

.bonuses-list-grid.two-columns .bonus-list-item:nth-child(even) {
    border-right: none;
}

/* Bonus Item */
.bonus-list-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fff;
    transition: background-color 0.2s ease;
}

.bonus-list-item:hover {
    background-color: #f8f8f8;
}

.bonus-list-item:last-child {
    
}

/* Logo */
.bonus-logo {
    flex-shrink: 0;
    margin-right: 12px;
}

.bonus-logo a {
    display: block;
}

.bonus-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* Content */
.bonus-content {
    flex: 1;
    min-width: 0;
}

.bonus-text {
    margin: 0 0 4px 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
}

.bonus-text i {
    color: #2fb682;
    margin-right: 4px;
}

.bonus-terms {
    margin: 0;
    font-size: 10px;
    color: #666;
    line-height: 1.3;
}

/* Action Button */
.bonus-action {
    flex-shrink: 0;
    margin-left: 12px;
}

.bonus-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #2fb682;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.bonus-button:hover {
    background-color: #218838;
}

/* Mobile Styles */
@media (max-width: 767px) {
    /* Force single column on mobile */
    .bonuses-list-grid.two-columns {
        flex-direction: column;
    }
    
    .bonuses-list-grid.two-columns .bonus-list-item {
        width: 100%;
        border-right: none;
    }
    
    .bonuses-list-header {
        font-size: 14px;
        padding: 10px 12px;
		margin-bottom:0px;
    }
    
    .bonuses-list-disclaimer {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .bonus-list-item {
        padding: 10px 12px;
    }
    
    .bonus-logo {
        margin-right: 10px;
    }
    
    .bonus-logo img {
        width: 40px;
        height: 25px;
    }
    
    .bonus-text {
        font-size: 11px;
    }
    
    .bonus-terms {
        font-size: 9px;
    }
    
    .bonus-button {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

/* Tablet - Maintain columns if specified */
@media (min-width: 768px) and (max-width: 1024px) {
    .bonuses-list-grid.two-columns .bonus-list-item {
        padding: 10px 14px;
    }
    
    .bonus-text {
        font-size: 11px;
    }
}