table {
    width: 100%;
    margin-bottom: 40px;
    background-color: #282828;
    color: #ffffff;
    border-collapse: separate;
    border-spacing: 0 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

th {
    padding: 16px 24px;
    background-color: #333333;
    color: #e0e0e0;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 2px solid #444444;
    white-space: nowrap;
}

td {
    padding: 16px 24px;
    background-color: #202020;
    border-bottom: 1px solid #444444;
    border-right: 1px solid #444444;
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    border-radius: 8px;
    word-wrap: break-word;
    max-width: 350px;
    white-space: normal;
}

td:last-child {
    border-right: none;
}

th:first-child, td:first-child,
th:nth-child(2), td:nth-child(2) {
    width: 90px;
}

th:nth-child(6), td:nth-child(6) {
    width: 180px;
}

th:nth-child(7), td:nth-child(7) {
    width: 350px;
    text-align: left;
    word-wrap: break-word;
    white-space: normal;
}

th:nth-child(8), td:nth-child(8) {
    width: 90px;
}

tr:nth-child(even) td {
    background-color: #1b1b1b;
}

tr:hover td {
    background-color: #333333;
    color: #ffffff;
    transform: translateY(-3px);
    cursor: pointer;
}

td.is-read-yes::before {
    content: "\2714";
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
}

td.is-read-no::before {
    content: "\2716";
    color: #F44336;
    font-weight: bold;
    font-size: 18px;
}

a {
    color: #00bbff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 10px 0;
    margin: 20px 0 0 0;
}

.pagination li {
    margin: 0 4px;
}

.pagination a {
    text-decoration: none;
    padding: 6px 12px;
    background-color: #1e1e1e;
    color: #00BBFF;
    border: 1px solid #00BBFF;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0px 0px 5px rgba(0, 187, 255, 0.4);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.pagination a:hover {
    background-color: #00BBFF;
    color: #ffffff;
    box-shadow: 0px 0px 7px rgba(0, 187, 255, 0.4), 0 0 10px rgba(0, 187, 255, 0.2);
    transform: translateY(-1px) scale(1.01);
}

.pagination a::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 187, 255, 0.2), transparent);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.pagination a:hover::after {
    transform: scale(1);
}

.pagination .active a {
    background-color: #00BBFF;
    color: #ffffff;
    transform: translateY(-1px) scale(1.01);
}

.pagination a:active {
    background-color: #0088cc;
    box-shadow: 0px 0px 5px rgba(0, 136, 204, 0.5);
    transform: translateY(0) scale(1);
}
