.authyo-otp-dashboard {
    padding: 20px;
}

.authyo-otp-dashboard .card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.authyo-otp-dashboard .card h2 {
    margin-top: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.authyo-otp-dashboard .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.authyo-otp-dashboard .stat-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 15px;
    text-align: center;
}

.authyo-otp-dashboard .stat-card h3 {
    margin: 0 0 10px 0;
    color: #23282d;
    font-size: 14px;
}

.authyo-otp-dashboard .stat-card .number {
    font-size: 24px;
    font-weight: 600;
    color: #2271b1;
}

.authyo-otp-dashboard .chart-container {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.authyo-otp-dashboard .recent-logs {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
}

.authyo-otp-dashboard .recent-logs table {
    width: 100%;
    border-collapse: collapse;
}

.authyo-otp-dashboard .recent-logs th,
.authyo-otp-dashboard .recent-logs td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.authyo-otp-dashboard .recent-logs th {
    font-weight: 600;
    color: #23282d;
}

.authyo-otp-dashboard .status-success {
    color: #46b450;
}

.authyo-otp-dashboard .status-error {
    color: #dc3232;
}

.authyo-otp-dashboard .status-pending {
    color: #ffb900;
} 