/* assets/satis-liste.css */

.table-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 20px;
    border-top: 4px solid #10b981; /* Zümrüt Yeşili */
}

table { width: 100%; border-collapse: collapse; }
thead { background-color: #ecfdf5; border-bottom: 2px solid #6ee7b7; }

th {
    padding: 15px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 800;
    color: #065f46;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 15px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 0.9rem;
    vertical-align: middle;
}

tbody tr:hover { background-color: #f0fdf4; }

/* Filtre Alanı */
.filter-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.filter-item { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 150px; }
.filter-item label { font-size: 0.8rem; font-weight: 700; color: #64748b; }
.filter-input {
    padding: 10px; border: 1px solid #cbd5e1; border-radius: 8px; width: 100%; box-sizing: border-box;
}

.btn-filter {
    background: #10b981; color: white; padding: 10px 20px; border-radius: 8px; border: none; cursor: pointer; font-weight: 600; height: 40px; display: flex; align-items: center; gap: 5px;
}
.btn-reset {
    background: #ef4444; color: white; padding: 10px 20px; border-radius: 8px; border: none; cursor: pointer; font-weight: 600; height: 40px; text-decoration: none; display: flex; align-items: center;
}

.btn-bulk-delete {
    background: #ef4444; color: white; padding: 10px 20px; border-radius: 8px; border: none; cursor: pointer; font-weight: 600; display: none; align-items: center; gap: 8px; font-size: 0.9rem;
}

.custom-checkbox { width: 18px; height: 18px; cursor: pointer; accent-color: #10b981; }
.action-btn { padding: 8px; border-radius: 8px; color: #64748b; transition: 0.2s; margin-right: 5px; }
.action-btn:hover { background: #f1f5f9; color: #10b981; }