
.search {
    width: 400px;
    background: var(--bg);
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    margin-bottom: 18px;
}

.search span {
    color: var(--white); 
    font-family: sans-serif;
}

.search input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: var(--bg);
    color: var(--text);
    padding: 0 10px;
    font-size: 16px;
    border-radius: 12px;
}

.search i {
    color: var(--text);
    font-size: 16px;
    margin-right: 10px;
}

.table-container {
    width: 100%;
    background: var(--table-row-1);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;

}

table {
    width: 100%;
    border-collapse: collapse; /* Ensure no gaps between table cells */
    border-spacing: 0; /* Ensure no gaps between table cells */
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border: none; /* Remove any borders from cells */
}

th {
    background: var(--column-bg);
    color: var(--white);
    font-weight: bold;
    font-family: 'Segoe UI';
}

th:hover {
    background-color: var(--whitetransparent-light);
}

tr {
    color: var(--text);
    font-family: sans-serif;
}

tr:nth-child(even) {
    background: var(--sidebar-content);
}

tr:hover {
    background: var(--whitetransparent-light);
}

.icons {
    display: flex;
    justify-content: right;
    gap: 10px;
}

.icons i {
    cursor: pointer;
    color: var(--text);
}

.icons i:hover {
    color: var(--white);
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 18px;
}

.pagination select {
    background: var(--sidebar-main);
    color: var(--white);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    margin: 18px 0 0 0;
}

.pagination button {
    background: var(--sidebar-main);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    margin: 18px 0 0 0;
}

.completed {
    background: rgb(63, 146, 63);
    padding: 8px;
    border-radius: 4px;
    color: var(--white);
    font-weight: 600;
}

.pending {
    background: rgb(89, 95, 102);
    padding: 8px;
    border-radius: 4px;
    color: var(--white);
    font-weight: 600;
}

.declined {
    background: rgb(188, 29, 85);
    padding: 8px;
    border-radius: 4px;
    color: var(--white);
    font-weight: 600;
}

.expired {
    background: rgb(139, 84, 84);
    padding: 8px;
    border-radius: 4px;
    color: var(--white);
    font-weight: 600;
}

.refunded {
    background: rgb(29, 169, 188);
    padding: 8px;
    border-radius: 4px;
    color: var(--white);
    font-weight: 600;
}

.disputed {
    background: rgb(188, 29, 29);
    padding: 8px;
    border-radius: 4px;
    color: var(--white);
    font-weight: 600;
}

.blocked {
    background: rgb(188, 122, 29);
    padding: 8px;
    border-radius: 4px;
    color: var(--white);
    font-weight: 600;
}

th:hover {
    background: var(--whitetransparent-light)
}