﻿.filter-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Table Container */
.table-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    overflow-x: auto;
}

/* Table Header */
.table thead th {
    background: linear-gradient(45deg, #e48b00, #ffb347);
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    white-space: nowrap;
    border: none !important;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Table Body Styling */
.table td {
    vertical-align: middle !important;
    text-align: center;
    font-size: 14px;
    padding: 8px;
    color: #333;
}

/* Alternate row color */
.table-striped tbody tr:nth-child(odd) {
    background-color: #fff9ef !important;
}

.table-striped tbody tr:hover {
    background-color: #ffe4b8 !important;
    cursor: pointer;
    transition: 0.2s;
}

/* Image Style */
.img-small {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
