/* Ensure the container for everything fills the screen */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Space for the footer at the bottom */
    margin-bottom: 60px !important;
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set a fixed height so we know exactly how much margin the body needs */
    height: 50px;
    line-height: 50px; /* Vertically centers text */
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 0 20px;
    color: #64748b;
    font-size: 0.85rem;
}

/* Ensure the main content doesn't get squeezed */
.container-fluid {
    padding-top: 20px;
}

/* Navbar cleanup */
.navbar {
    margin-bottom: 0 !important;
    border-bottom: 1px solid #e2e8f0;
}

/* Ensure CKEditor feels integrated */
.ck-editor__editable {
    min-height: 250px;
    background-color: white !important;
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--primary-color);
}

.fw-600 {
    font-weight: 600;
}

.form-label {
    color: #475569;
    font-size: 0.9rem;
}
