/* FMA Joomla 6 Template - Main Styles */
:root {
    --brand-blue: #1e40af;
    --brand-teal: #0d9488;
    --dark-bg: #0f172a;
    --light-teal: #a5f3fc;
}

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Sets minimum height to 100% of the viewport height */
    margin: 0; /* Optional: Resets default body margin */
}

div.main_content_outer {
    /*border: 1px solid red;*/
    flex: 1 0 auto;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Checkbox styling */
input[type="checkbox"] {
    accent-color: #f97316; /* Orange-500 */
}

/* Animation classes */
.transition-all {
    transition: all 0.3s ease;
}

/* Bootstrap Collapse CSS for use with Tailwind */
.collapse {
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, visibility 0.3s ease;
    opacity: 0;
}

.collapse.show {
    visibility: visible;
    max-height: 1000px; /* Adjust based on your content height */
    opacity: 1;
    transition: max-height 0.5s ease, visibility 0.5s ease, opacity 0.3s ease;
}

/* For smooth accordion-like behavior */
.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}
