.box-shadow-rounded {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
}

.btn-primary.see-btn {
    background-color: #7CF6D1;
    box-shadow: none;
    color: #131F3B;
    border: 1px solid #131F3B;
}

.btn-primary.see-btn:focus, .btn-primary.see-btn:hover {
    background-color: white;
    box-shadow: none;
    color: #131F3B;
    border: 1px solid #131F3B;
}

.btn-search {
    width: 90px;
}

.image-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 50%; /* pour garder le cercle si nécessaire */
    display: inline-block;
}

.ellipsis-text {
    display: block; /* ou inline-block si besoin */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%; /* ou fixe si tu veux contrôler la largeur */
}


.zoom-inside {
    transition: transform 0.3s linear;
    display: block;
}

.image-wrapper:hover .zoom-inside {
    transform: scale(1.1);
}


.flex-center {
    display: flex;
    justify-content: center;
}


.profile-img {
    border-radius: 50%;
    height: 125px;
    width: 125px;
    object-fit: cover;
}


.center-text {
    text-align: center;
}

.font-14 {
    font-size: 14px;
}

.custom-padding {
    padding: 10px 0;
}

.margin-custom {
    margin: 5px 0px;
}

.btn-padding {
    padding: 10px;
}

.icon-color {
    background: #131F3B;
    margin-left: 100px;
    margin-top: 66px;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    border-radius: 50%;
    padding: 2px;
    font-size: 30px;
    color: #1DA1F2;
    box-shadow: 0 0 0 2px white;
}