.info-card {
    padding: 0.5rem; /* Smaller padding */
}
.info-card .card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.info-card .separator {
    border-left: 1px solid #dee2e6; /* Bootstrap's default border color */
    height: 100%;
    margin: 0 1rem;
}
.info-card .text-secondary {
    flex: 1;
    text-align: right;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent; /* Transparent border for inactive tabs */
    color: black; /* Text color */
    background-color: transparent;
    flex: 1; /* Flex grow to fill the space */
    text-align: center; /* Center text */
}

.nav-tabs .nav-link.active {
    border-bottom: 3px solid #ffa502; /* Orange border for active tab */
    color: #ffa502; /* Text color for active tab */
}

/* Additional styles */
.nav-item {
    display: flex; /* Make nav items flex containers */
}

.nav-item:last-child .nav-link {
    border-right: 1px solid #dee2e6; /* Add right border to last tab */
}

.custom-upload-field {
    display: inline-block;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding: .375rem .75rem;
}

/* Optional: Adjust the width or other styles based on your preference */
.custom-upload-field input[type="file"] {
    width: 100%;
    border: none;
    outline: none;
}