.basicfeatures-container {
    margin: 0;
}

.basicfeatures-template-section {
    margin-bottom: 25px;
}

.basicfeatures-template-name {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #ddd;
}

.basicfeatures-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

/* Add 10px padding to all table cells */
.basicfeatures-table td {
    padding: 10px;
}

/* Add border-bottom to all rows */
.basicfeatures-table tr {
    border-bottom: 1px solid #ddd;
}

/* Style for even rows - add #ddd background */
.basicfeatures-table tr:nth-child(even) {
    background-color: #ddd;
}

/* Make even row bf-label also show #ddd (inherits from parent) */
.basicfeatures-table tr:nth-child(even) .bf-label {
    background-color: #ddd;
}

/* Style for odd rows */
.basicfeatures-table tr:nth-child(odd) {
    background-color: #f5f5f5;
}

.basicfeatures-table tr:nth-child(odd) .bf-label {
    background-color: #f5f5f5;
}

.basicfeatures-table .bf-label {
    font-weight: bold;
    width: 45%;
}

.basicfeatures-table .bf-value {
    /* No background color here - inherits from row */
}

/* Remove duplicate borders from cells since rows now have borders */
.basicfeatures-table td {
    border-bottom: none;
}