/* Shared dashboard styles */
.deution-dashboard {
    margin: 0 auto;
    padding: 0;
}
.dashboard-title {
    margin-bottom: 32px;
    color: #53bfff;
}
.success-message {
    color: #28a745;
    margin-bottom: 32px;
}
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    gap: 16px;
    margin-bottom: 16px;
}
.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #53bfff;
    color: #fff;
    border-radius: 8px;
    padding:1rem;
    transition: transform .3s;
}
.stat-card:hover {
    background: #4e4e4e;
    color: #fff;
    transform: translateY(-4px);
}
.stat-card .dashicons {
    width: auto;
    display: block;
    font-size: 48px;
    margin-bottom: 32px; 
    animation:pulse 3s infinite;
}
@keyframes pulse {
    0%,100%{
        transform: scale(1);
    } 50% {
        transform: scale(1.1);
    }
}
.stat-info {
    text-align:center;
}
.stat-number {
    display: block;
    font-size:24px;
    margin-top: 8px;
    font-weight: bold;
}
.dashboard-settings {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #53bfff;
    margin-bottom: 32px;
}
.settings-title {
    margin-bottom: 32px;
    color: #53bfff;
}
.settings-label {
    display:block;
    margin-bottom: 32px;
}