/* Container styles */
.trabica-spare-parts-table-container {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    background: #fff;
}

/* Search and filter styles */
.trabica-spare-parts-filters {
    margin-bottom: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

#trabica-spare-parts-search {
    flex: 1;
    min-width: 200px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

#trabica-filter-column {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
}

/* Table styles */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.trabica-spare-parts-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: #00337e !important;
    border: 1px solid #00337e !important;
}

.trabica-spare-parts-table th {
    background: #f8f8f8;
    font-weight: 500;
    text-align: left;
    padding: 12px;
    /* border-bottom: 1px solid #eee; */
    border: 1px solid #00337e !important;
}

.trabica-spare-parts-table td {
    padding: 12px;
    /* border-bottom: 1px solid #eee; */
    color: black;
    border: 1px solid #00337e !important;
    /* border: 1px solid #00337d !important; */
    background-color: #ffffff !important;
}

.trabica-spare-parts-table tr:hover {
    background-color: #fafafa;
}

/* Button style */
.trabica-spare-part-button {
    /* background-color: #2196F3; */
    background-color: #ff9300;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 0px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.trabica-spare-part-button:hover {
    /* background-color: #1976D2; */
    background-color: #00337d !important;
    border-radius: 0px !important;
}

/* Sortable columns */
.sortable {
    cursor: pointer;
    position: relative;
    color: #00337e !important;
    /* background-color: #dddddd !important; */
}

.sort-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    /* font-size: 12px; */
    /* opacity: 0.5; */
    font-size: 21px !important;
    color: #ff9300 !important;
    opacity: 1 !important;
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
    .trabica-spare-parts-table thead {
        display: none;
    }

    .trabica-spare-parts-table tbody tr {
        display: block;
        border-bottom: 1px solid #eee;
        padding: 8px 0;
    }

    .trabica-spare-parts-table td {
        display: block;
        text-align: left;
        padding: 4px 8px;
        border: none;
        position: relative;
        padding-left: 40%;
    }

    .trabica-spare-parts-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 8px;
        width: 35%;
        font-weight: 500;
    }

    .trabica-spare-parts-table td:last-child {
        text-align: right;
        padding-left: 8px;
    }

    .trabica-spare-part-button {
        margin-top: 4px;
    }
}

/* Minimal scrollbar */
.table-responsive::-webkit-scrollbar {
    height: 4px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #ddd;
} 
} 