/* Pros & Cons Table - Dark Theme */
.pros-cons-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    background-color: #0e0c28;
    color: white;
}

.pros-cons-table th {
    padding: 12px 15px;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    color: white;
}

.pros-cons-table th:first-child {
    background: linear-gradient(to bottom, #1E5945, #164335);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.pros-cons-table th:last-child {
    background: linear-gradient(to bottom, #721422, #5a0f1a);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.pros-cons-table td {
    vertical-align: top;
    padding: 15px;
    color: white;
    position: relative;
}

.pros-cons-table td:first-child {
    background: linear-gradient(rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)), #1E5945;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.pros-cons-table td:last-child {
    background: linear-gradient(rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)), #721422;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.pros-cons-table ul {
    list-style-type: none;
    padding-left: 10px;
    margin: 0;
}

.pros-cons-table ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.pros-cons-table ul li:before {
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    top: -2px;
}

.pros-cons-table td:first-child ul li:before {
    content: "✓";
    color: #bcf5bc;
}

.pros-cons-table td:last-child ul li:before {
    content: "✗";
    color: #ff9999;
}

.pros-cons-table tr, .pros-cons-table td {
    border: none;
}

/* Mobile responsiveness - maintains readability on small screens */
@media (max-width: 768px) {
    .pros-cons-table {
        font-size: 0.9rem;
    }

    .pros-cons-table th,
    .pros-cons-table td {
        padding: 10px 8px;
    }

    .pros-cons-table ul li {
        font-size: 0.95rem;
    }
}

/* Additional mobile optimization for very small screens */
@media (max-width: 480px) {
    .pros-cons-table {
        border-spacing: 0 5px;
    }

    .pros-cons-table th {
        font-size: 1.1rem;
        padding: 10px 5px;
    }
}