/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating {
    margin: 20px 0;
}*/

/* CSS styles for sidebar */
/*.sidebar {
    height: 100%;
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    padding-top: 60px;
}

    .sidebar ul {
        list-style: none;
        padding: 0;
    }

    .sidebar li {
        padding: 10px;
    }

    .sidebar a {
        color: white;
        text-decoration: none;
    }

/* Adjust the main content to accommodate the sidebar */
/*.main-content {
    margin-left: 250px;
    padding: 20px;
}
*/

/* Shimmer placeholder */
.skel {
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
    border-radius: .5rem;
}

    .skel::after {
        content: "";
        position: absolute;
        inset: 0;
        transform: translateX(-100%);
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
        animation: shimmer 1.1s infinite;
    }

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.skel-line {
    height: 14px;
    margin: 10px 0;
}

.skel-table {
    height: 220px;
}

/* Smooth content fade-in (optional) */
.content > * {
    animation: fadeIn .4s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 10;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}