.msgs-table-container {
    overflow-x: auto;
    margin-bottom: 1.5em;
}

.msgs-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 1em 0;
    font-size: 0.9em;
}

.msgs-table th,
.msgs-table td {
    padding: 8px 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.msgs-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.msgs-table.msgs-striped tr:nth-child(even) {
    background-color: #f9f9f9;
}

.msgs-table.msgs-striped tr:hover {
    background-color: #f1f1f1;
}

.msgs-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.msgs-error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 1em;
}

.msgs-lazy-load {
    min-height: 100px;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.msgs-loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: msgs-spin 2s linear infinite;
    margin-bottom: 10px;
}

.msgs-loader-text {
    color: #666;
}

@keyframes msgs-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}