.main-content table {
    width: 100%;
    border-collapse: collapse;
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
    margin: 30px 0;
        margin: 0 auto;
}

.main-content table thead {
    background: #1a1a1a;
}

.main-content table thead tr {
    border-bottom: 2px solid #d8ff2f;
}

.main-content table th {
    padding: 16px 18px;
    text-align: left;
    font-weight: 700;
    color: #a3ff00;
    font-size: 15px;
}

.main-content table td {
    padding: 14px 18px;
    border-bottom: 1px solid #262626;
    color: #d6d6d6;
    vertical-align: top;
}

.main-content table tbody tr {
    transition: background 0.2s ease;
}

.main-content table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.main-content table tbody tr:hover {
    background: rgba(216, 255, 47, 0.06);
}

.main-content table tbody tr:last-child td {
    border-bottom: none;
}

.main-content table strong,
.main-content table b {
    color: #ffffff;
}
.table-container {
	    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .main-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 10px;
    }

    .main-content table th,
    .main-content table td {
        padding: 12px 14px;
        font-size: 14px;
    }
}