/* Table layout fixed to align sticky header */
#guitarDataBaseTable {
    width: 100%;
    table-layout: fixed;
}

#guitarDataBaseTable th, #guitarDataBaseTable td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 5px 10px;
}
/* Center text in table headers and cells */
#guitarDataBaseTable th,
#guitarDataBaseTable td {
    text-align: center;
    vertical-align: middle;
}

/* Filters styling */
.gdb-filters label {
    margin-right: 5px;
    font-weight: 500;
}

.gdb-filters select {
    border: 1px solid #aaa;
    border-radius: 3px;
   padding: 6px 6px !important;
    background-color: transparent;
    color: inherit;
    
}
#guitarDataBaseTable td {
    white-space: nowrap;      /* keep columns narrow */
    overflow: hidden;
    text-overflow: ellipsis;  /* show ... if text is long */
}

#guitarDataBaseTable td:hover {
    overflow: visible;
    white-space: normal;      /* show full text on hover */
    background: #f9f9f9;     /* optional highlight */
    position: absolute;
    z-index: 999;
    padding: 6px 8px;
}


/* Align DataTables controls */
#guitarDataBaseTable_wrapper .dataTables_length,
#guitarDataBaseTable_wrapper .dataTables_filter {
    margin: 0;
}
