/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

header, footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 10px 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.feature-list {
    list-style-type: none;
    padding: 0;
}

.feature-item {
    background-color: #fff;
    margin: 15px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    margin-top: 0;
}

.feature-item p {
    color: #555;
}

.feature-item a {
    color: #007bff;
    text-decoration: none;
}

.feature-item a:hover {
    text-decoration: underline;
}

.status, .db-required {
    margin-top: 15px;
}

.status span, .db-required span {
    font-weight: bold;
}

/* Status Colors */
.modification-required {
    color: #f44336; /* Red for modification required */
}

.out-of-the-box {
    color: #4caf50; /* Green for works out of the box */
}

/* DB Required Styling */
.feature-item .db-required .yes {
    color: #f44336; /* Red for DB required */
}

.feature-item .db-required .no {
    color: #4caf50; /* Green for no DB required */
}
