/* Global Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

h1 {
    text-align: center;
    color: #007bff;
}

ul {
    list-style-type: disc;
    margin: 20px 0;
    padding-left: 20px;
}

/* Layout Components */
.container {
    max-width: 850px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ceedd2;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Article Components */
.article-meta {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
}

.section-break {
    border: 0;
    height: 1px;
    background: #b2d8b7;
    margin: 40px 0;
}

.feature-box {
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 4px solid #007bff;
}

/* Call to Action */
.cta {
    text-align: center;
    margin-top: 30px;
}

.cta a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta a:hover {
    background-color: #0056b3;
}

/* Data Tables */
.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #007bff;
    color: #fff;
}

tr:hover {
    background-color: #f1f1f1;
}
