/* Dosya: explorivares/static/css/sites.css */

/* --- SOSYAL MEDYA GİRİŞ BUTONLARI --- */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0 15px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.2s ease;
    gap: 8px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
}
.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.social-btn img {
    width: 18px;
    height: 18px;
}

/* Renkler */
.btn-google { border-color: #DB4437; color: #DB4437; }
.btn-facebook { border-color: #1877F2; color: #1877F2; }
.btn-microsoft { border-color: #00A4EF; color: #00A4EF; }


/* --- MODERN VIRA AI CHATBOT GÖRÜNÜMÜ --- */
#vira-chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease;
}
#vira-chat-toggle:hover {
    transform: scale(1.1);
}

#vira-chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 370px;
    height: 550px;
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: none; /* JS ile açılır */
    flex-direction: column;
    z-index: 10000;
    overflow: hidden;
    border: 1px solid #eee;
    font-family: 'Poppins', sans-serif;
}

.vira-header {
    background: linear-gradient(145deg, #007bff, #0056b3);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.vira-header span:last-child {
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
}

.vira-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Mesaj Balonları */
.msg { padding: 12px 16px; border-radius: 18px; max-width: 85%; font-size: 0.95rem; line-height: 1.5; word-wrap: break-word; }
.msg-bot { background: #fff; color: #333; align-self: flex-start; border-bottom-left-radius: 4px; border: 1px solid #eee; }
.msg-user { background: #007bff; color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.msg a { color: #007bff; font-weight: 600; text-decoration: none; }
.msg-bot a { color: #007bff; }

.vira-footer {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
}
.vira-input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    background: #f9f9f9;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}
.vira-input:focus { border-color: var(--primary-color); }
.vira-send {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.vira-send:hover { background: #0056b3; }
.vira-send svg { width: 20px; height: 20px; }