/* Simple pastel style */

body {
    background: #faf8fc;
    color: #444;
    font-family: Arial, sans-serif;
    padding: 20px;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

/* HEADER */
th {
    background: #d8eefe;
    color: #355070;
    text-align: left;
    padding: 10px;
    border: 1px solid #cfd8e3;
    font-weight: 600;
}

/* PANEL HEAD */
.panel-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.save-all-btn {
    padding: 6px 16px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.save-all-btn:hover:not(:disabled) {
    background: #43a047;
}

.save-all-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* CELLS */
td {
    padding: 10px;
    border: 1px solid #e3e7ed;
}

/* ROW STRIPES */
table tr:nth-child(odd) {
    background: #fffdfd;
}

table tr:nth-child(even) {
    background: #f8f4fb;
}

/* HOVER */
table tr:hover {
    background: #eef6ff;
}

/* FILTER AREA */
.filters {
    margin: 16px 0;
}

.filters label {
    margin-right: 8px;
    color: #555;
}

/* SELECTS */
.filters select {
    min-width: 180px;
    padding: 6px 8px;
    border: 1px solid #ccd6e0;
    background: #fff;
    color: #444;
}

/* ACTION COLUMN */
.action-cell {
    text-align: center;
    white-space: nowrap;
}

/* BUTTONS */
.action-cell button {
    min-width: 70px;
    padding: 6px 10px;
    border: 1px solid #c8d5e1;
    background: #e8f0fe;
    color: #355070;
    cursor: pointer;
}

.action-cell button:hover:not(:disabled) {
    background: #dcecff;
}

.action-cell button:disabled {
    background: #f0f0f0;
    color: #aaa;
    border-color: #ddd;
    cursor: not-allowed;
    opacity: 0.6;
}