/* General styles for the deposit history section */
.deposit-history {
    margin: 20px;
    font-family: Arial, sans-serif;
}

.deposit-history label {
    text-align: left;
    color: #f0f0f0;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    gap: .5em;
    font-weight: 500;
    font-size: 1.4em;
}

/* Styles for the filter dropdown */
#filter {
    margin-bottom: 10px;
    padding: 5px;
    font-size: 16px;
}
.filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 .5em;
}

/* Styles for the table */
#history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

#history-table th, #history-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

#history-table th {
    background-color: #4CAF50; /* Green background for header */
    color: white;
}

#history-table tr:nth-child(even) {
    background-color: #f2f2f2; /* Light gray for even rows */
}

#history-table tr:hover {
    background-color: #ddd; /* Gray background on hover */
}

#history-table td {
    font-size: 14px;
}

/* Message styles */
#history-container td {
    text-align: center; /* Center align messages */
    font-style: italic;
    color: #777; /* Gray color for messages */
}