
.container {
    max-width: 1900px;
}

.main-content {
    margin-top: 55px;
}

.logo {
    height: 4.5rem;
    float: left;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

html {
  position: relative;
  min-height: 100%;
}
body {
  margin-bottom: 60px;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
}

.tile-link,
.tile-link:hover {
    color: inherit;
    text-decoration: none;
}

.tile {
    margin: 1rem -0.5rem;
    height: 400px;
    padding: 30px;
    width: 300px;
    background: #F1F5F7;
}

.tile h4 {
    font-size: 18px;
    margin-top: 3rem;
}

.tile-disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.bordered {
        border: 1px solid #ddd;
        margin: 20px;
        padding: 20px;
    }

.tooltip-indicator {
    color: blue; /* Change text color to blue */
    text-decoration: underline; /* Add underline */
    cursor: pointer; /* Change cursor to pointer */
}

/* More specific styling for the App Home badge to make it smaller overall */
/* This targets the badge specifically within the app-home-badge-link context */
.navbar-compact .app-home-badge-link .badge.text-bg-info {
    font-size: 0.8em;   /* Smaller than the default 0.9em for other .navbar-compact .badge */
    padding: 0.3em 0.5em; /* Adjust padding for the smaller font */
}

/* CSS for truncating App Home badge text in the navbar */
/* This rule now applies to text within the already smaller App Home badge */
.app-home-badge-link .badge .app-home-text {
    display: inline-block;
    max-width: 100px; /* This max-width might need adjustment if the font is significantly smaller */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle; /* Or 'bottom', experiment for best alignment with icon */
}
/* ===============================================
   NAVBAR OVERFLOW / WRAPPING IMPROVEMENTS
   =============================================== */
/* Prevent the menu from spilling off-screen on wide installs
   while still allowing full inline display on very large widths. */

/* Keep each link on a single line but allow the whole bar to scroll
   horizontally if an edge-case still exceeds the page width. */

/* Ensure link text itself never breaks mid-word */
.navbar-nav .nav-link {
    white-space: nowrap;
}
