.font-weight-bold {
    font-weight: 700 !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.progress,
.progress-bar {
    display: flex;
    overflow: hidden;
}

.progress {
    background-color: #e9ecef;
    border-radius: .25rem;
    font-size: .75rem;
    height: 1rem;
    line-height: 0;
}

.form-label {
    font-size: 18px !important;
}

input,
select {
    color: #6c757d;
    /* Bootstrap's muted text color */
    opacity: 0.85;
    /* Slight transparency */
    filter: blur(0.2px);
    /* Subtle blur effect */
}

.deal-type-option {
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    background-color: #fff;
    text-align: center;
    transition: border-color 0.2s ease;
}

.deal-type-option.active {
    border-color: #0d6efd;
    /* Bootstrap primary */
}

.deal-type-option h5,
.deal-type-option span {
    color: #6c757d;
    margin: 0;
}