/* LogLens custom styles */

/* Smooth transitions on cards */
.card {
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12) !important;
}

/* Dashed drop zone styling */
#dropZone {
    transition: all 0.2s ease;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#dropZone:hover {
    background-color: #e8f0fe !important;
    border-color: #0d6efd !important;
}

/* Severity badge widths — keep consistent across issue lists */
.badge {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

/* Make the navbar brand feel distinct */
.navbar-brand {
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}

/* Landing hero gradient overlay effect */
.hero-gradient {
    background: linear-gradient(135deg, #0d1117 0%, #1a2332 100%);
}

/* Pricing card hover effect */
.card.border-primary {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(13, 110, 253, 0.15) !important;
}

/* Analysis result sections spacing */
.list-group-item {
    border-left: 0;
    border-right: 0;
}

.list-group-item:first-child {
    border-top: 0;
}

/* Progress bar for processing state */
.progress-bar-animated {
    animation-duration: 1.5s;
}

/* Monospace code blocks in results */
pre {
    font-size: 0.8rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-1 {
        font-size: 4rem;
    }

    .display-4 {
        font-size: 2rem;
    }
}
