.field-description {
    color: #5E6366;
    font-size: 0.75rem;
    line-height: 16px !important;
}

.field-validation-error {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: var(--bs-form-invalid-color);
}

.field-validation-valid {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: var(--bs-form-valid-color);
}

.validation-summary-errors {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: var(--bs-form-invalid-color);
}

.pointer {
    cursor: pointer;
}

.card-icon {
    font-size: 40px;
    line-height: 1;
}

.card-height {
    height: 156px;
}

.text-truncate-multiline {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em; /* Adjust based on font size */
    line-height: 1.5em;
}

.form-border {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cdcfd2;
    padding: 10px;
    border-radius: 5px;
}
.flip-card {
    width: 100%;
    height: 120px;
    perspective: 1200px;
    -webkit-perspective: 1200px;
    -moz-perspective: 1200px;
    -ms-perspective: 1200px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: transform 0.6s ease;
    -webkit-transition: -webkit-transform 0.6s ease;
    -moz-transition: -moz-transform 0.6s ease;
    -ms-transition: -ms-transform 0.6s ease;
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    background-color: #fff; /* Optional: background color */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: card shadow */
}

.flip-card-back {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
}

.flip-card.clicked .flip-card-inner {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
}

.progress-wrapper {
    position: relative;
    height: 150px;
    margin-top: 20px;
    overflow-x: visible; /* Allow milestones to render correctly */
}

.progress-milestone {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #525ce5;
    border-radius: 3px;
    z-index: 0;
}

.progress-bar {
    height: 100%;
    background-color: #28a745;
    border-radius: 20px;
    transition: width 0.4s ease;
}
.milestone {
    position: absolute;
    top: 15px;
    text-align: center;
    transform: translateX(-50%);
    width: 80px;
    z-index: 2;
}

.milestone .circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #525ce5;
    border: 1px solid #ccc;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px auto;
}

.milestone.approved .circle {
    background-color: #28a745;
    border-color: #28a745;
}

.milestone-label {
    font-size: 0.75rem;
    margin-top: 5px;
}
.no-interaction {
    pointer-events: none; /* Block interaction */
    background-color: #e9ecef; /* Gray background like disabled */
    color: #6c757d; /* Muted text color like disabled */
}
.w-5 {
    width: 5% !important;
}
.w-10 {
    width: 10% !important;
}

.w-15 {
    width: 15% !important;
}

.w-20 {
    width: 20% !important;
}

.w-30 {
    width: 30% !important;
}
.selected-container {
    display: flex;
    flex-direction: column;
}

.selected-box {
    border: 1px solid #ccc;
    height: 100px; /* Fixed height */
    padding: 10px;
    border-radius: 5px;
    background-color: #f8f9fa;
    overflow-y: auto; /* Enable scrolling */
}

.selected-item {
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    margin: 5px 0;
    border-radius: 3px;
    cursor: pointer;
}

.selected-item:hover {
    background-color: #0056b3;
}