.form-control:focus {
    border-color: #DD2A95;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(233, 102, 139, 0.6);

}

.form-check-input:focus {
    border-color: #DD2A95;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(233, 102, 139, 0.6);
}

.btn:focus {
    border-color: #DD2A95;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(233, 102, 139, 0.6);
}

.help-block {
    display: block;
}

.red {
    color: red !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.blue {
    color: #3490dc;
}

.green {
    color: #38c172;
}

.orange {
    color: #f6993f;
}

.truncated-text {
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.truncated-text:hover .full-text {
    visibility: visible;

}

.full-text {
    visibility: hidden;
    background-color: #f9f9f9;
    color: #000;
    text-align: left;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    z-index: 1;
    white-space: nowrap;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    top: 100%;
    /* Position below the text */
    left: 50%;
    transform: translateX(-50%);
}