.uds-dashboard {
    font-family: inherit;
    color: #333;
}
.uds-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 30px;
}
.uds-stat-box {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: #fff;
}
.uds-stat-title {
    font-size: 16px;
    font-weight: 600;
}
.uds-stat-value {
    font-size: 28px;
    margin-top: 6px;
    font-weight: bold;
    color: #0073aa;
}
.uds-actions {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}
.uds-actions h3 {
    margin-bottom: 4px;
}
.uds-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
}
.uds-btn {
    flex: 1;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}
.uds-btn:hover {
    background: #005f8d;
}
.uds-listings {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    padding: 20px;
}
.uds-table {
    width: 100%;
    border-collapse: collapse;
}
.uds-table th,
.uds-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.uds-table th {
    background: #fafafa;
}
.uds-view {
    color: #0073aa;
    text-decoration: none;
}
.uds-view:hover {
    text-decoration: underline;
}