/* body {
    background: #1e2a38;
    font-family: Arial;
}

.forum-wrapper {
    width: 95%;
    margin: auto;
} */

.section-title {
    background: var(--accent-color);
    color: #fff;
    padding: 15px;
    font-weight: 400;
}

.forum-table {
    width: 100%;
    border-collapse: collapse;
}

.forum-table th {
    background: #013f75;
    color: #fff;
    padding: 10px;
    font-size: 13px;
}

.forum-table td {
    background: #fff;
    color: #000;
    padding: 10px;
    font-size: 14px;
    /* border-bottom: 1px solid #1c2833; */
}

.forum-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.forum-name {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 14px;
    line-height: 24px;
}

.forum-name a{color: var(--accent-color);}

.forum-table a{
    font-weight: bold;
    color: var(--accent-color);
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
}

.forum-desc {
    font-size: 13px;
    color: #000;
}

.forum-icon{
    width:32px;
    height:auto;
}

.forum-icon img{
    max-width:100%;
}