/**
 * Tables Module Styles
 *
 * @author Universal AI Cloud Development Team
 * @version 1.0.0
 * @license MIT
 * @copyright (c) 2025 Universal AI Cloud Development Team
 */

/* Seamless table inputs */
.data-table .table-input {
    border: none;
    background: transparent;
    width: 100%;
    padding: 4px 0;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
}

.data-table .table-input:focus {
    outline: none;
    background: rgba(102, 126, 234, 0.05);
}

.data-table .table-input::placeholder {
    color: #ccc;
    font-style: italic;
}

/* Input validation error state */
.data-table .table-input.error {
    background: rgba(231, 76, 60, 0.1);
}

/* Checkbox styling in tables */
.data-table input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.data-table input[type="checkbox"]:disabled {
    cursor: default;
    opacity: 0.7;
}

/* New row styling */
.data-table tr.new-row {
    background: #fafafa;
}

.data-table tr.new-row td {
    border-top: 1px dashed #ddd;
}

