/* Agent Avatar Styles */
.agent-avatar img,
.agent-avatar svg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.agent-avatar img:hover,
.agent-avatar svg:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Ensure the agent avatar container accommodates the new size */
.agent-avatar {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Update card layout to accommodate larger avatars */
.agent-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.agent-info {
    flex: 1;
    min-width: 0;
}

.agent-info h6 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.agent-info small {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Social Links Footer Styles */
.social-footer {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-footer .btn {
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.social-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}