tr.provider-row td, table tbody>tr:nth-child(odd)>td {
    border: none !important;
    background: #ffffff00;
}

table.electricity-table td {
	  border: none !important;
}

table tbody tr:hover > td, table tbody tr:hover > th {
    background-color: #ffffff00 !important;
}

table tbody > tr:nth-child(odd):hover > td, tr.provider-row:hover td {
    background: none !important;
}

.action-buttons .btn-primary {
	color: white !important;
}

/* Filter Sidebar Styles */
.electricity-comparison-container {
    display: flex;
    gap: 30px;
    position: relative;
    flex-direction: column;
}

/* Filter Section Styles - Modern Match to Table */
.filter-sidebar {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.filter-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-header h2 {
    margin: 0;
    font-size: 22px;
    color: #2c3e50;
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 15px;
}

.filter-group h3 {
    margin: 0 0 18px 0;
    font-size: 16px;
    color: #34495e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-options label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.2s ease;
}

.filter-options label:hover {
    background: #e9ecef;
}

.filter-options input[type="checkbox"],
.filter-options input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #4CAF50;
    cursor: pointer;
}

/* Reset Button - Updated to Match Design */
.reset-filters {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-top: 10px;
}

.reset-filters:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.reset-filters:active {
    transform: translateY(0);
}

/* Active filter state */
.filter-options input:checked + span {
    font-weight: 600;
    color: #4CAF50;
}

/* Mobile Filter Button */
.mobile-filter-btn {
    display: none;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
    transition: all 0.3s;
}

.mobile-filter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        z-index: 1000;
        overflow-y: auto;
        transition: left 0.3s ease;
        margin-bottom: 0;
        box-shadow: 4px 0 15px rgba(0,0,0,0.1);
    }
    
    .filter-sidebar.active {
        left: 0;
    }
    
    .mobile-filter-btn {
        display: block;
    }
    
    .close-sidebar {
        display: block !important;
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #7f8c8d;
    }
}

/* Modern Card-like Table Styles */
.ladestander-table,
.electricity-table,
.ladestander-uden-abo-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.provider-row {
    background: white;
    display: flex;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-wrap: nowrap;
    justify-content: center;
    margin-bottom: 10px;
    align-items: center;
}

.provider-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.provider-row td {
    padding: 10px;
    vertical-align: middle;
    width: -webkit-fill-available;
}

/* Column 1: Logo + Rating */
.logo-rating-cell {
    width: 15%;
    text-align: center;
}

.ladestander-table .logo-rating-cell,
.ladestander-uden-abo-table .logo-rating-cell {
    width: 70%;
    text-align: center;
}

.logo-container {
    width: 170px;
    height: 90px;
    margin: 0 auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.star-rating {
    color: #FFD700;
    font-size: 16px;
    display: inline-block;
}

/* Column 2: Details Grid */
.details-grid-cell {
    width: 130% !important;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.grid-item {
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.grid-item .value {
    font-weight: 600;
    font-size: 16px;
    color: #2c3e50;
}

.grid-item .label {
    font-size: 12px;
    color: #7f8c8d;
    letter-spacing: 0.5px;
}

/* Column 3: Estimated Price */
.estimated-price-cell {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.estimated-price-cell .value {
    font-weight: 700;
    font-size: 15px;
    color: #e74c3c;
}

.estimated-price-cell .package {
    font-size: 14px;
    color: #34495e;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 16px;
    display: inline-block;
}

.estimated-price-cell .label {
    font-size: 12px;
    color: #7f8c8d;
}

/* Column 4: Price + Actions */
.price-actions-cell {
    width: 25%;
    text-align: center;
    padding-left: 20px;
}

.price-per-kwh {
    font-weight: 700;
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 5px;
    padding: 5px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    display: inline-block;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action-buttons a {
    color: black;
}

.action-buttons a.btn-secondary {
    font-size: 12px;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white !important;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 180px;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
    color: #3498db;
    padding: 5px 15px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
    max-width: 180px;
}

.btn-secondary:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .provider-row td {
        padding: 15px;
    }
    
    .details-grid {
        gap: 12px;
    }
}

@media (max-width: 992px) {
    .ladestander-table,
    .electricity-table,
	  .ladestander-uden-abo-table,
    .provider-row, 
    .provider-row td {
        display: flex;
        width: 100% !important;
        flex-direction: column;
    }
    
    .provider-row {
        padding: 10px;
        margin-bottom: 25px;
        position: relative;
    }
    
    .provider-row td {
        padding: 15px 0;
        border-right: none !important;
    }
    
    td.details-grid-cell,td.price-actions-cell {
        padding: 0px;
    }
    
    .logo-rating-cell {
        text-align: left;
        display: flex;
        align-items: center;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding: none;
    }
    
    .logo-container {
        width: 80px;
        height: 50px;
        margin: 0;
    }
    
    .details-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px;
        padding: 0;
        margin: 15px 0;
    }
    
    .estimated-price-cell {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        display: none !important;
    }
    
    .price-actions-cell {
        padding-top: 20px;
    }
    
    .action-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-primary,
	.btn-secondary {
			max-width: 160px;
		}
	}

	button.close-sidebar:hover {
		padding: 0px 25px;
		background: none;
		color: black;
	}

	.load-more-container {
		display: flex;
		flex-direction: row;
		justify-content: center;
	}

@media (max-width: 576px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        max-width: 100%;
    }
}

tr.provider-row td, table tbody>tr:nth-child(odd)>td {
    border: none !important;
    background: #ffffff00;
}

/* Ladestander Specific Styles */
.ladestander-table .provider-row,
.ladestander-uden-abo-table .provider-row  {
    position: relative;
    overflow: hidden;
}

.ladestander-table .model-image-cell,
.ladestander-uden-abo-table .model-image-cell{
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ladestander-table .model-image-cell .model-name,
.ladestander-uden-abo-table .model-image-cell .model-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.ladestander-table .model-image-cell img,
.ladestander-uden-abo-table .model-image-cell img{
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

.ladestander-table .model-price-cell,
.ladestander-uden-abo-table .model-price-cell{
		width: 70%;
    text-align: center;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ladestander-table .price-value,
.ladestander-uden-abo-table .price-value
{
    font-weight: 700;
    font-size: 18px;
    color: #e74c3c;
    margin-bottom: 15px;
}

.ladestander-banner, .ladestander-uden-abo-banner {
    position: absolute;
    top: 30px;
    right: -12px;
    transform: translate(30%, -50%) rotate(45deg);
    padding: 8px 53px;
    color: white;
    font-weight: bold;
    width: 20%;
    font-size: 12px;
    background: #003366;
    z-index: 99;
    overflow: hidden;
    text-transform: uppercase;
}

/* Responsive adjustments for ladestander */
@media (max-width: 992px) {
    .ladestander-table .provider-row,
    .ladestander-table .provider-row td,

	.ladestander-uden-abo-table .provider-row,
    .ladestander-uden-abo-table .provider-row td
	{
        display: flex;
        flex-direction: column;
    }
    
    .ladestander-table .model-image-cell,
	.ladestander-uden-abo-table .model-image-cell{
        order: 2;
        padding: 15px 0;
    }
    
    .ladestander-table .details-grid-cell,
	.ladestander-uden-abo-table .details-grid-cell {
        order: 3;
    }
    
    .ladestander-table .model-price-cell,
	.ladestander-uden-abo-table .model-price-cell{
        order: 4;
        padding-top: 20px;
    }
    
    .ladestander-banner,
	  .ladestander-uden-abo-banner{
        font-size: 10px !important;
        padding: 8px 52px !important;
        top: 26px;
        right: -10px;
        width: 50%;
    }
    }


