/* Table styles */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.table-bordered td {
    border: 1px solid #000;
    padding: 8px;
    text-align: center;
    vertical-align: middle;
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 1rem;
}

/* Specific column widths */
.table td:nth-child(1) { width: 170px; }
.table td:nth-child(2) { width: 170px; }
.table td:nth-child(3) { width: 170px; }
.table td:nth-child(4) { width: 170px; }
.table td:nth-child(5) { width: 170px; }
.table td:nth-child(6) { width: 170px; }
.table td:nth-child(7) { width: 170px; }

/* Text alignment */
.text-justify {
    text-align: justify;
}

/* Container and layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.wysiwyg-content {
    flex: 1;
    padding: 0 15px;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

/* Typography */
h2, h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

em {
    font-style: italic;
}

strong {
    font-weight: bold;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0056b3;
    border-color: #004085;
}
