.container {
    margin-top: 120px;
    max-width: 1200px;
    padding: 0 20px;
    margin-bottom:20px;
}



.compare-text-center {
    margin-bottom: 40px;
    font-weight: 600;
    color: #333;
    position: relative;
    text-align: center;
    padding-bottom: 15px;
}

h2.text-center:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #3498db;
}

.table-responsive {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.table {
    margin-bottom: 0;
    background-color: #fff;
}

.table th, .table td {
    text-align: center;
    vertical-align: middle;
    padding: 15px;
    border-color: #e6e6e6;
}

.table thead th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    min-width: 180px;
}

.table tbody th {
    background-color: #f8f9fa;
    text-align: left;
    font-weight: 600;
    color: #333;
}

.img-fluid {
    max-height: 120px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.img-fluid:hover {
    transform: scale(1.05);
}

.btn-danger {
    margin-top: 10px;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
    transition: all 0.3s;
}

.btn-danger:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

strike {
    color: #999;
    margin-right: 5px;
}

/* Styling for product title */
thead th p {
    margin: 10px 0;
    font-weight: 500;
    font-size: 14px;
}

/* Empty state styling */
p.text-center {
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 18px;
    color: #666;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .container {
        margin-top: 70px;
    }
    
    .table thead th {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .container {
        margin-top: 50px;
    }
    
    h2.text-center {
        font-size: 24px;
    }
}