/* frontend.css */
.gwolf-features-wrapper {
    margin: 30px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gwolf-features-wrapper h3 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
    display: inline-block;
}

.gwolf-features-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
    background: #fff;
}

.gwolf-features-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.gwolf-features-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s;
}

.gwolf-features-table .feature-name {
    font-weight: 600;
    color: #2c3e50;
    width: 30%;
    background: #f1f5f9;
    border-right: 1px solid #ddd;
}

.gwolf-features-table .feature-value {
    color: #34495e;
    font-size: 0.98em;
}

.gwolf-features-table tr:hover {
    background-color: #ebf5fb;
}

@media (max-width: 600px) {
    .gwolf-features-table {
        font-size: 14px;
    }
    .gwolf-features-table td {
        padding: 10px;
    }
    .gwolf-features-table .feature-name {
        font-size: 0.9em;
        padding: 10px;
    }
}