.link-section .ul-section-sub-title {
    display: block !important;
}
.table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: #fff;
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.table thead {
    background-color: #f44336;
    color: #fff;
    text-align: left;
}

.table thead th {
    padding: 12px 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.table tbody tr {
    transition: background-color 0.2s ease-in-out;
}

.table tbody tr:hover {
    background-color: #f9f9f9;
}

.table td, .table th {
    padding: 12px 16px;
    border: 1px solid #ddd;
    vertical-align: middle;
}

.table tbody td:first-child {
    font-weight: 500;
    color: #333;
}
.chapter-box {
    background: #fff;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 1px solid #ddd;
    max-width: 600px;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin: 20px auto;
    border-radius: 8px;
    background-image: url('your-background-image.png'); /* Optional: match the patterned background */
    background-size: contain;
}

.chapter-box b {
    font-weight: bold;
}

.chapter-box .label {
    color: #f44336;
    font-weight: bold;
}

.chapter-box .divider {
    border-top: 1px dashed #888;
    margin: 12px 0;
}