:root {
    --third-color: #8fb31c;
}

body {
    background-color: var(--background-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.dashboard-container {
    margin-top: 80px;
    padding: 2rem;
    flex: 1;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.text-primary {
    color: var(--primary-color) !important;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.recent-deposits {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive {
    min-height: 300px;
    overflow-x: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

a:focus, 
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #97BF0D;
  outline-offset: 2px;
}

canvas:focus {
    outline: 3px solid #97BF0D;
    outline-offset: 2px;
}

table {
    width: 100%;
    caption-side: bottom;
}

th {
    text-align: left;
}