/* Meeting Notes - Custom Styles */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

main {
    flex: 1;
}

.meeting-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.meeting-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.upload-zone {
    border: 2px dashed #dee2e6;
    cursor: pointer;
    transition: all 0.2s ease;
}

.upload-zone:hover {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

.border-dashed {
    border-style: dashed !important;
}

.content-area {
    line-height: 1.8;
    font-size: 0.95rem;
}

.content-area h1, .content-area h2, .content-area h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.content-area ul, .content-area ol {
    padding-left: 1.5rem;
}

.content-area li {
    margin-bottom: 0.25rem;
}

/* Tab styling */
.nav-tabs .nav-link {
    color: #6c757d;
}

.nav-tabs .nav-link.active {
    font-weight: 600;
}

/* Processing steps */
.list-group-item .badge {
    min-width: 60px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .content-area {
        font-size: 0.9rem;
    }
}
