.logincontainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 7rem);
    padding: 1rem 0;
}
.active {
/*    color: #434445 !important;*/
}
.nav-link {
    position: relative;
    display: inline-block; /* or flex, depending on your layout */
    padding: 4px 12px; /* Adjust padding as needed */
    text-decoration: none;
/*    color: #707173; /* Adjust text color as needed */
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0; /* Adjust to move closer or farther from the bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 80%; /* Adjust width of the underline */
    height: 2px; /* Adjust thickness of the underline */
    background-color: #d3e4ef; /* Adjust underline color */
}

.inline {
    display: inline-block; /* or flex, depending on your layout */
    /*display: inline;*/
}
.mr-15 {
    margin-right: 15px;
}
.mr-10 {
    margin-right: 10px;
}

.ml-15 {
    margin-left: 15px;
}
.mr-5 {
    margin-right: 5px;
}

.ml-5 {
    margin-left: 5px;
}
.pr-5 {
    padding-right: 5px;
}

.pl-5 {
    padding-left: 5px;
}
.cursor-pointer {
    cursor:  pointer !important;
}
.small-link {
    font-size: 12px;
}
.expand-table {
    table-layout: auto; /* Adjust table layout to auto */
}
.expand {
    width: 100%; /* This will make the column expand */
}
.bg-gray-25 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 251 251 / var(--tw-bg-opacity));
}

.emit-blue {
    --tw-bg-opacity: 1;
    background-color: rgb(199 225 243 / var(--tw-bg-opacity));
}
.emit-blue:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(191 217 255 / var(--tw-bg-opacity));
}
.ts-dropdown input {
    z-index: 1000 !important;
}
.ts-dropdown-content {
    z-index: 1000 !important;
}
.recent-proj-height {
    height: 190px !important;
}

[x-cloak] {
    display: none;
}
/*
.jsselect {
    display: none;
}
*/

.muti-select{
    height: 100% !important;
    width: 100% !important;
    z-index: 1000 !important;
}

.svg-icon {
    width: 1em;
    height: 1em;
}

.svg-icon path,
.svg-icon polygon,
.svg-icon rect {
    fill: #333;
}

.svg-icon circle {
    stroke: #4691f6;
    stroke-width: 1;
}

.form-label-150 {
    width: 150px;
    text-align: right;"
}

.project-form {
    max-width: 600px; /* Adjust the width as per your design requirements */
    margin: 0 auto; /* Centers the form horizontally */
}

div.vert-spacer-30 {
    height: 30px !important;
}

div.vert-spacer-15 {
    height: 15px !important;
}

div.vert-spacer-5 {
    height: 5px !important;
}


:root {
    --pico-font-size: 100% !important;
}

.center {
  margin: auto;
}
.block {
    display: block;
}
.right {
    text-align: right;
}

.left{
    text-align: left;
}
.pad5{
  padding: 5px;
}
.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.round-button {
  border-radius: 50%;
  padding: 10px 20px;
}
article {
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Change this to your desired shadow */
    box-shadow: var(--box-shadow);
}
.image-section {
    width: 60%;
    padding: 10px;
    background-color: #e9e9e9;
}

.image-section img {
    width: 100%;
    height: auto;
}

.metadata-section {
    width: 90%;
    padding: 10px;
/*    background-color: #f9f9f9;*/
}

.metadata-section h2 {
    margin-top: 0;
}

.metadata-section p {
    margin: 10px 0;
}
.key-value-pair {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
}
.key {
    width: 120px; /* Fixed width for the key column */
    text-align: right;
    font-weight: bold;
    margin-right: 1rem;
}
.value {
    flex: 1;
    text-align: left;
}
.alert {
    position: relative;
    padding: 1rem 1.5rem 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.alert-primary {
    background-color: #e3f2fd;
    color: #0d6efd;
    border-color: #b6d4fe;
}
.alert-success {
    background-color: #d1e7dd;
    color: #198754;
    border-color: #a3cfbb;
}
.alert-warning {
    background-color: #fff3cd;
    color: #ffc107;
    border-color: #ffeeba;
}
.alert-danger {
    background-color: #f8d7da;
    color: #dc3545;
    border-color: #f5c2c7;
}
.alert-dismissible button {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    border: none;
    background: none;
    color: inherit;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}
.alert-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.alert-content progress {
    flex-grow: 1;
    margin-right: 1rem;
}
.alert-status {
    margin-top: 0.5rem;
}

.badge-container {
    position: relative;
    display: inline-block;
}

.badge {
    background-color: #ff6347; /* Tomato color */
    color: white;
    padding: 5px 5px;  /* Reduced padding */
    border-radius: 50px;  /* Increased border radius for a more round shape */
    font-size: 10px;  /* Smaller font size */
    font-weight: bold;
    display: inline-block;
    min-width: 20px;  /* Reduced minimum width */
    text-align: center;
    line-height: 1.0;
    vertical-align: middle; /* Ensure the badge aligns with text */
    position: relative;
    top: -2px;  /* Move the badge up by 2 pixels, adjust as needed */
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);  /* Slightly smaller shadow */
}

.form-container {
    max-width: 500px; /* Limit the width of the form */
    margin: auto; /* Center horizontally */
    padding: 2rem; /* Add some padding for spacing */
    background-color: var(--background); /* Optional: Add a background color */
    border-radius: 0.5rem; /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a slight shadow */
}
.nav-img {
    vertical-align: center;
    width: 25px;
    height: 25px
}

.login-hgroup {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.error-div {
    color: red;
    font-size: 14px;
    margin-bottom: 3px;
}

.gap-0 {
    gap: 0;                /* Remove any gap between flex items */
}

.flex {
    display: flex;         /* Use flexbox to align logos horizontally */
}
.image-container img {
    max-height: 500px;
    width: auto;
    display: block;
    margin: 0 auto; /* Center the image horizontally */
}
.pdf-container embed {
    min-height: 600px;
    max-height: 1000px;
    width: 100%;
    border: none;
}