/* Dashboard specific tweaks if needed */
.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.875rem;
}

/* Lead Card Grid Layout */
.lead-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.lead-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.2s;
    border: 1px solid #eee;
}

.lead-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lead-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.lead-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.lead-date {
    font-size: 0.8rem;
    color: #777;
}

.lead-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: #555;
}

.lead-detail-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lead-detail-row i {
    width: 20px;
    text-align: center;
    color: #888;
}

.lead-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lead-actions {
    display: flex;
    gap: 0.5rem;
}