/* PEM STUDIO - DIRECT CHAT WIDGET CSS */
.pem-chat-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    overflow: hidden;
    display: none; /* hidden by default */
    font-family: inherit;
    border: 1px solid #eee;
}
.pem-chat-widget.active {
    display: block;
}
.chat-header {
    background: #6a11cb;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 15px 20px;
}
.chat-header p {
    margin: 0; font-weight: 700; font-size: 16px;
}
.chat-header span {
    font-size: 12px; opacity: 0.9;
}
.chat-team-list {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.team-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s;
    border: 1px solid #f0f0f0;
}
.team-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.team-btn i {
    font-size: 28px;
}
.team-btn div {
    display: flex; flex-direction: column;
}
.team-btn strong {
    font-size: 14px; color: #111;
}
.team-btn small {
    font-size: 11px; color: #666;
}
.team-1 { background: #f0fdf4; }
.team-1 i { color: #25D366; }
.team-2 { background: #f8f9ff; }
.team-2 i { color: #111; }
.form-btn { background: #fff; }
.form-btn i { color: #6a11cb; }

.pem-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
