.manual-wrapper {
    max-width: 1000px;
    margin: auto;
}

#manual-search {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
}

.manual-table {
    width: 100%;
    border-collapse: collapse;
}

.manual-table th,
.manual-table td {
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

.manual-table th {
    background: #f5f5f5;
}
#manual-loader {
    padding: 10px;
    font-size: 14px;
    color: #666;
}

#manual-loader:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #ddd;
    border-top-color: #333;
    border-radius: 50%;
    animation: manual-spin .7s linear infinite;
    margin-right: 8px;
    vertical-align: -2px;
}

@keyframes manual-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}