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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
/* Dashboard styles */
.workflow-diagram {
    position: relative;
    overflow-x: auto;
}

.workflow-container {
    min-width: 800px;
}

.workflow-step {
    flex: 0 0 auto;
    width: 150px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.workflow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-arrow {
    flex: 0 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
}

.tab-pane {
    animation: fadeEffect 0.5s;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.metric {
    padding: 10px;
    border-radius: 4px;
}

    .metric h3 {
        margin-bottom: 0;
        font-weight: 600;
    }

    .metric h4 {
        margin-bottom: 0;
        font-weight: 600;
    }


/* Add these styles to your site.css file or inline in the view */
#queueTabs .nav-link {
    color: #495057; /* Dark gray/almost black color */
}

    #queueTabs .nav-link.active {
        color: #000; /* Black color for active tab */
        font-weight: 500;
    }

/* Add these styles for better icon positioning */
.workflow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .workflow-icon i {
        position: relative;
        top: 0; /* Adjust if needed for better centering */
    }