/* Citation Modal - Minimalist Design */

/* Modal Container */
#citeModal .modal-content {
    border: 1px solid #e5e7eb;
    border-radius: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Modal Header - Clean & Simple */
#citeModal .modal-header {
    background: #ffffff;
    color: #111827;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

#citeModal .modal-title {
    color: #111827;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

#citeModal .btn-close {
    opacity: 0.4;
}

#citeModal .btn-close:hover {
    opacity: 1;
}

/* Modal Body */
#citeModal .modal-body {
    padding: 2rem;
}

/* Citation Output Box */
.citation-output {
    line-height: 1.7;
    font-size: 0.95rem;
    color: #374151;
    font-weight: 400;
}

#citeModal .alert-light {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    padding: 1.5rem;
    box-shadow: none;
}

/* Section Headings */
#citeModal h6 {
    color: #111827;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

#citeModal .border-top {
    border-color: #e5e7eb !important;
    margin-top: 2rem;
    padding-top: 2rem;
}

/* Citation Format Buttons - Minimalist */
.citation-format-btn {
    transition: all 0.15s ease;
    text-decoration: none !important;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 0;
    background: #ffffff;
    color: #374151;
    box-shadow: none;
}

.citation-format-btn:hover {
    background-color: #f9fafb;
    border-color: #111827;
    color: #111827;
    transform: none;
    box-shadow: none;
}

.citation-format-btn:active {
    background-color: #f3f4f6;
}

/* Copy Button - Clean Design */
#citeModal .btn-outline-primary {
    border: 1px solid #111827;
    color: #111827;
    background: transparent;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 0;
    transition: all 0.15s ease;
}

#citeModal .btn-outline-primary:hover {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
    transform: none;
    box-shadow: none;
}

/* Download Buttons - Minimalist */
#citeModal .btn-success {
    background: #ffffff;
    border: 1px solid #111827;
    color: #111827;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 0;
    transition: all 0.15s ease;
    box-shadow: none;
}

#citeModal .btn-success:hover {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
    transform: none;
    box-shadow: none;
}

/* Helper Text */
#citeModal .text-muted {
    color: #6b7280;
    font-size: 0.8125rem;
}

/* Icons - Subtle */
#citeModal i.text-primary,
#citeModal i.text-success {
    color: #111827 !important;
}

#citeModal .fa-chevron-right {
    color: #9ca3af !important;
}

/* Remove animations */
.fade-in {
    animation: none;
}