/* Login page language switcher */
.login-lang-switch {
    text-align: right;
    margin-bottom: 16px;
}
.login-lang-switch .lang-btn {
    display: inline-block;
    padding: 4px 10px;
    margin-left: 4px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #666;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}
.login-lang-switch .lang-btn:hover {
    background: #f5f5f5;
    color: #333;
}
.login-lang-switch .lang-btn.active {
    background: #337ab7;
    color: #fff;
    border-color: #2e6da4;
}

/* Empty state for visite actions list */
.empty-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    margin: 16px 0;
    color: #888;
    background: #fafafa;
    border: 1px dashed #e0e0e0;
    border-radius: 6px;
}
.empty-actions-icon {
    font-size: 56px;
    color: #d0d0d0;
    margin-bottom: 16px;
}
.empty-actions-title {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}
.empty-actions-subtitle {
    font-size: 13px;
    color: #999;
    max-width: 280px;
    line-height: 1.4;
}

/* Selected-visite summary card in the inline actions panel */
.visite-summary {
    padding: 18px 20px;
    margin: 0 0 16px;
    background: #f4f5f7;
    border: 1px solid #e2e5ea;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    text-align: left;
}
.visite-summary-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}
.visite-summary-meta {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.visite-summary-meta i {
    margin-right: 4px;
    color: #9ca3af;
}
.visite-summary-comment {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    padding: 10px 12px;
    margin-top: 12px;
    background: #ffffff;
    border: 1px solid #e6e8ec;
    border-radius: 6px;
    white-space: pre-wrap;
    max-height: 120px;
    overflow-y: auto;
}
