.voucher-index-head-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.voucher-index-title {
    margin: 0;
    font-size: 24px;
}

.voucher-index-btn-add {
    position: absolute;
    top: 10px;
    right: 10px;
    text-decoration: none;
    background-color: #81c784;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.voucher-index-btn-add:hover {
    background-color: #66bb6a;
    transform: scale(1.05);
}

.voucher-index-search,
.voucher-index-select {
    border-radius: 12px;
    font-size: 15px;
    padding: 10px 14px;
    height: 42px;
    border: 1px solid #66bb6a;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.voucher-index-search::placeholder {
    color: #b0b0b0;
    font-style: italic;
    font-size: 0.8rem;
}

.voucher-index-search:focus,
.voucher-index-select:focus {
    border-color: #43a047;
    box-shadow: 0 4px 8px rgba(67, 160, 71, 0.5);
    outline: none;
    background-color: #f9fff9;
}

.voucher-index-btn-search,
.voucher-index-btn-reset {
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    height: 42px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.voucher-index-btn-search {
    background-color: #81c784;
    color: white;
    border: none;
    box-shadow: 0 4px 8px rgba(67, 160, 71, 0.4);
}

.voucher-index-btn-search:hover {
    background-color: #66bb6a;
    transform: translateY(-2px);
}

.voucher-index-btn-reset {
    background-color: white;
    color: #444;
    border: 1px solid #ccc;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.voucher-index-btn-reset:hover {
    background: #f44336;
    color: white;
    border-color: #f44336;
    transform: translateY(-2px);
}

.voucher-index-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #f9fdf9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.voucher-index-thead th {
    background: linear-gradient(90deg, #4caf50, #81c784);
    color: white;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid #388e3c;
}

.voucher-index-thead th:first-child {
    border-top-left-radius: 10px;
}

.voucher-index-thead th:last-child {
    border-top-right-radius: 10px;
}

.voucher-index-row td {
    padding: 10px 15px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

.voucher-index-row:hover {
    background-color: #f0f9f0;
}

.voucher-index-btn-edit,
.voucher-index-btn-delete {
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 12px;
    transition: 0.25s ease;
    color: white;
    border: none;
}

.voucher-index-btn-edit {
    background-color: #66bb6a;
}

.voucher-index-btn-edit:hover {
    background-color: #388e3c;
    transform: scale(1.05);
}

.voucher-index-btn-delete {
    background-color: #f44336;
}

.voucher-index-btn-delete:hover {
    background-color: #d32f2f;
    transform: scale(1.05);
}

.voucher-index-select {
    min-width: 120px;
}

.voucher-index-small-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.voucher-index-filter-small {
    min-width: 130px;
    max-width: 160px;
    border-radius: 10px;
    padding: 5px 10px;
    font-size: 13px;
    height: 36px;
    border: 1px solid #ccc;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
}
