/* Hide "Built with Chainlit" watermark */
.watermark {
  display: none !important;
}

/* Hide any remaining Chainlit links in footer */
a[href*="chainlit.io"] {
  display: none !important;
}

/* AMNESTY Export/Copy Toast Notifications */
.amnesty-toast {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: #0E2A5C;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 13px;
    font-weight: 500;
    z-index: 10000;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.amnesty-toast-logo {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

.amnesty-toast-logo img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.amnesty-export-buttons {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    display: flex;
    gap: 8px;
    z-index: 100;
}

.amnesty-export-btn {
    background: #0E2A5C;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.amnesty-export-btn:hover {
    background: #0a1c42;
}

.amnesty-dropdown {
    position: relative;
    display: inline-block;
}

.amnesty-dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    bottom: 100%;
    right: 0;
    border: 0.5px solid #e5e7eb;
}

.amnesty-dropdown-content a {
    color: #0E2A5C;
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
}

.amnesty-dropdown-content a:hover {
    background: #f3f4f6;
}

.amnesty-dropdown.open .amnesty-dropdown-content {
    display: block;
}
