.dashboard-container {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
}
.kmt-home-column-left-top {
    display: flex;
    justify-content: space-between;
}
.overview-stats .rz-card {
    transition: all 0.3s ease;
}

.overview-stats .rz-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.trend-indicator {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.trend-indicator i {
    font-size: 0.875rem;
}

.trend-indicator.text-green-600 {
    background-color: rgba(22, 163, 74, 0.1);
}

.trend-indicator.text-green-400 {
    background-color: rgba(74, 222, 128, 0.1);
}

.trend-indicator.text-red-600 {
    background-color: rgba(220, 38, 38, 0.1);
}

.trend-indicator.text-red-400 {
    background-color: rgba(248, 113, 113, 0.1);
}

.trend-indicator.text-gray-400 {
    background-color: rgba(156, 163, 175, 0.1);
}

.trend-indicator span {
    margin-left: 0.375rem;
    font-size: 0.875rem;
}

.activity-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-icon.email-sent {
    color: #1976d2;
}

.activity-icon.email-opened {
    color: #2e7d32;
}

.activity-icon.campaign-started {
    color: #7b1fa2;
}

.activity-icon.contact-added {

    color: #ef6c00;
}

.chart-container {
    height: 300px;
}

.progress-bar {
    height: 4px;
    border-radius: 2px;
    background: #e9ecef;
    margin: 0.5rem 0;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #1976d2 0%, #64b5f6 100%);
    transition: width 0.3s ease;
}





/* PAGE /EMAIL */
#contactGrid .rz-pager {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
}