/* career.css */
.btn-lightweight {
    font-weight: normal !important;
}
.modal-loader-overlay {
    position: fixed;
    z-index: 1050; /* Above most UI elements */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* dark transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-loader-spinner {
    text-align: center;
}

.modal-header {
    border-bottom: 1px solid #ddd;
}

.modal-footer {
    border-top: 1px solid #ddd;
}

.modal-title {
    font-weight: bold;
    font-size: 1.25rem;
}

input::placeholder {
    font-style: italic;
    color: #aaa;
}
/* Limit modal height */
.modal-dialog.modal-lg {
  max-height: 80vh; /* Adjust as needed */
}

/* Modal content full height and flex */
.modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Header fixed height */
.modal-header {
  flex: 0 0 auto;
}

/* Footer fixed height */
.modal-footer {
  flex: 0 0 auto;
}

/* Body takes remaining space and scrolls */
.modal-body {
  overflow-y: auto;
  flex: 1 1 auto;
  padding: 1rem 1.5rem; /* or your padding */
}
