
.um-message-modal .gtranslate-injected {
    padding: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    background: #f9f9f9;
}

.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-verify-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
}

.ew-verified {
    border: solid 1px #2e7d32;
	background: #fff;
    color: #155724;
}

.ew-pending {
    background: #fff3cd;
    color: #856404;
}

.ew-unknown {
    background: #e2e3e5;
    color: #383d41;
}


.ew-verify-simple {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: #2e7d32; /* green */
    padding: 1px 3px;
	border-radius: 5px;
}

.ew-verify-simple.ew-verified::before {
    content: "✔ ";
    color: #2e7d32;
}

.ew-verify-simple.ew-pending {
    color: #f1a600;
}

.ew-verify-simple.ew-unverified {
    color: #d63638;
	border: solid 1px #d63638;
}

.ew-verify-simple.ew-unknown {
    color: #666;
}



/* ew-dashboard-plugin.css */

.ew-dashboard-profile {
    background: #f9f9f9;
    padding: 16px;
    border-radius: 8px;
	border: 1px solid #ddd;
    margin-bottom: 0px;
    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;
	margin-bottom: 10px!important;
}

.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;
	margin-bottom: 10px!important;
}

.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.3;
}

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

.ew-stat-tile {
    height: 100px;
}

