/* Table Section Container */
.table-section { padding: 10px 20px 50px; background-color: #ffffff; display: flex; flex-direction: column; align-items: center; }
.table-container { width: 100%; max-width: 1100px; overflow-x: auto; box-shadow: 0 0 20px rgba(0,0,0,0.05); border-radius: 10px; margin-bottom: 10px; }
.custom-table { width: 100%; border-collapse: separate; border-spacing: 0; background-color: #fff; min-width: 900px; }
.custom-table thead th { background: linear-gradient(45deg, #17a2b8, #9b42f5); color: #ffffff; padding: 12px 5px; font-weight: 600; text-align: center; font-size: 0.8rem; white-space: nowrap; border: none; }
.custom-table thead th:first-child { border-top-left-radius: 10px; }
.custom-table thead th:last-child { border-top-right-radius: 10px; }
.custom-table tbody td { padding: 10px 5px; border-bottom: 1px solid #eee; text-align: center; vertical-align: middle; }
.custom-table tbody tr:last-child td { border-bottom: none; }
.table-input { width: 100%; padding: 6px 8px; border: 1px solid #ddd; border-radius: 4px; font-size: 0.75rem; outline: none; transition: border-color 0.3s; color: #333; }
.table-input:focus { border-color: #9b42f5; }
.btn { padding: 6px 12px; border: none; border-radius: 4px; cursor: pointer; font-size: 0.75rem; transition: all 0.3s; outline: none; display: inline-flex; align-items: center; justify-content: center; }
.btn-secondary { background-color: #e0e0e0; color: #888; cursor: not-allowed; min-width: 80px; }
.btn-secondary.active { background-color: #6c757d; color: #fff; cursor: pointer; }
.btn-delete { background-color: #dc3545; color: white; width: 24px; height: 24px; padding: 0; border-radius: 50%; font-size: 1rem; line-height: 1; }
.btn-delete:hover { background-color: #c82333; }
.btn-delete:disabled { background-color: #e0e0e0; cursor: not-allowed; }
.btn-add-row { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(45deg, #17a2b8, #9b42f5); color: white; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; margin-top: 0; }
.btn-add-row:hover { transform: translateY(-2px) rotate(1deg); }
.fixed-count { display: inline-block; padding: 6px 10px; border-radius: 6px; background: #f3f4f6; color: #333; font-size: 0.8rem; }
.col-domain { width: 16%; }
.col-name { width: 16%; }
.col-desc { width: 20%; }
.col-gen { width: 8%; }
.col-lang { width: 10%; }
.col-link { width: 20%; }
.col-action { width: 60px; }
