html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.card {
    border-radius: 0.75rem;
}

.card-header {
    font-weight: 600;
}

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 1000;
}

/* hide on desktop */
@media (min-width: 768px) {
    .mobile-bottom-nav {
        display: none;
    }
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    text-decoration: none;
    color: #333;
}

.nav-item .icon {
    font-size: 18px;
}

body {
    padding-bottom: 70px;
}

@media (max-width:768px) {
    .btn-primary {
        width: 100%;
    }
}



/* hide mobile on desktop */
.mobile-cards {
    display: none;
}

/* hide table on mobile */
@media (max-width: 768px) {
    .desktop-table {
        display: none;
    }

    .mobile-cards {
        display: block;
    }
}

.file-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    background: white;
}

.file-card-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.file-card-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 2px 0;
}

.file-card-actions {
    margin-top: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}