.icon-image{
    width: 24px;
}

.icon-image-job-item{
    width: 18px;
}

/* Recruiter Mediated Badge Global Styles */
.badge-recruiter-mediated {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: middle;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background-color: #0271b1 !important; /* Blue color as requested */
    color: #ffffff !important;
    
    /* Sleek Circle dimensions */
    height: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    box-shadow: 0 2px 4px rgba(2, 113, 177, 0.15);
    margin-left: 5px;
}

.badge-recruiter-mediated .expandable-text {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
}

.badge-recruiter-mediated:hover {
    max-width: 130px !important;
    padding: 0 10px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 8px rgba(2, 113, 177, 0.25);
}

.badge-recruiter-mediated:hover .expandable-text {
    max-width: 100px;
    opacity: 1;
    margin-left: 4px;
}

.badge-recruiter-mediated .r-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 10px;
}