.ui-dashboard {
    width: 100%;
    min-height: calc(100vh - 60px);
    background-color: #f1f5f9;
    padding: 30px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.dash-main {
    display: flex;
    gap: 30px;
}

.dash-left {
    width: 28%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dash-right {
    width: 72%;
    display: flex;
    flex-direction: column;
}

.dash-box, .history-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.history-card {
    flex: 1;
    overflow-y: auto;
    overflow-x: auto;
}

.dash-top-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dash-btn {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.dash-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-purple {
    background: linear-gradient(135deg, #a855f7, #7e22ce);
}

.btn-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.btn-red {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.profile-card h3, .history-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #334155;
    font-size: 22px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

.profile-details p {
    margin: 15px 0;
    color: #475569;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-details strong {
    color: #1e293b;
}

.balance-text-big {
    font-size: 28px;
    color: #16a34a;
    font-weight: 800;
}

.badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: bold;
    background-color: #e0f2fe;
    color: #0369a1;
    text-transform: uppercase;
}

.transaction-table {
    width: 100%;
    border-collapse: collapse;
}

.transaction-table th,
.transaction-table td {
    padding: 14px 15px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.transaction-table th {
    background-color: #f8fafc;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.transaction-table tbody tr:hover {
    background-color: #f8fafc;
}

.text-positive {
    color: #16a34a;
    font-weight: bold;
}

.text-negative {
    color: #dc2626;
    font-weight: bold;
}

@media (max-width: 768px) {
    .dash-main {
        flex-direction: column;
    }
    .dash-left, .dash-right {
        width: 100%;
    }
}
