.ew-dashboard-activity {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.ew-dashboard-activity h3 {
    margin-top: 0;
    font-size: 16px;
    color: #253B7C;
}

.ew-activity-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ew-activity-list li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.ew-activity-list li a {
    color: #253B7C;
    text-decoration: none;
}


.ew-progress-bar-container {
    max-width: 400px;
    margin: 15px 0;
	background-color: #fff;
    padding: 10px;
    border-radius: 15px;
    border: 1px solid #ccc;
}



.ew-verification-appeal {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
}

.ew-verification-appeal p {
    margin: 0 0 10px 0;
}

.ew-btn-appeal {
    display: inline-block;
    padding: 8px 16px;
    background-color: #253B7C;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.ew-btn-appeal:hover {
    background-color: #AF1F24;
	color: #fff;
}



.ew-profile-greeting {
    font-size: 12px;
    color: #777;
    font-weight: 400;
    
}

/* ew-dashboard-plugin.css */

.ew-dashboard-profile {
    background: #f9f9f9;
    padding: 16px;
    border-radius: 8px;
	border: 1px solid #ddd;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.ew-profile-avatar {
    flex: 0 0 80px;
}

.ew-profile-details {
    flex: 1;
    min-width: 200px;
}

.ew-profile-name {
    font-size: 18px;
    font-weight: 600;
    color: #253B7C;
    margin-bottom: 4px;
}

.ew-profile-role,
.ew-profile-credits,
.ew-profile-subscription,
.ew-profile-expiry {
    font-size: 14px;
    color: #777;
    margin-top: 4px;
}

.ew-profile-actions {
    flex-basis: 100%;
    margin-top: 12px;
}

.ew-profile-actions a {
    display: inline-block;
    padding: 10px 16px;
    background: #253B7C;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-right: 10px;
}

.ew-profile-actions a.ew-btn-upgrade-plan {
    background: #AF1F24;
}

@media (max-width: 600px) {
    .ew-dashboard-profile {
        flex-direction: column;
    }

}

.ew-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .ew-dashboard-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .ew-dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}


.ew-stat-tile {
    display: grid;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px; /* ✅ control spacing manually */
    padding: 12px;
    text-align: center;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    flex: 1 1 140px;
    min-width: 90px;
}

.ew-stat-tile strong {
    display: block;
    font-size: 26px;
    color: #253B7C;
    margin-bottom: 4px;
	line-height: 1.1;
}

.ew-stat-tile span {
    font-size: 12px;
    color: #777;
	line-height: 1.1;
}

