.smr-table {
    background-color: #e6f3ff;
    border-collapse: collapse;
    width: 100%;
}

.smr-table th,
.smr-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.smr-table th {
    background-color: #cce5ff;
}

.smr-table img {
    max-width: 100%;
    height: auto;
}

.smr-table input[type="text"] {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}

.smr-table .button {
    padding: 5px 10px;
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
}

.smr-table .button:hover {
    background-color: #005d87;
}

.smr-filter-form {
    margin-bottom: 20px;
}

.smr-filter-form select,
.smr-filter-form input[type="text"] {
    margin-right: 10px;
    padding: 5px;
}

.smr-footer {
    margin-top: 20px;
}

.tablenav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tablenav-pages {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tablenav-pages a,
.tablenav-pages span.current {
    padding: 5px 10px;
    border: 1px solid #ddd;
    background-color: #f7f7f7;
    text-decoration: none;
    color: #0073aa;
}

.tablenav-pages a:hover {
    background-color: #0073aa;
    color: white;
    border-color: #005d87;
}

.tablenav-pages span.current {
    background-color: #0073aa;
    color: white;
    border-color: #005d87;
}

.displaying-num {
    font-size: 14px;
    color: #444;
}