.sign-up-form .form-group .text-red-600{
    list-style: none;
    color: red;
    text-align: center;
    width: 100%;
}


/*select2*/
.select2-container{
    flex: 1 1 calc(33.33% - 10px);
}
.select2-container--default .select2-selection--single{
    height: 40px;
    border-radius: 0;
    border: 1px solid #f8b1b1b0;
    box-shadow: unset;
    color: #000;
    display: flex;
    align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    height:100%
}


#friend-list {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #EEE;
    list-style-type: none;
}
#friend-list *{
    text-decoration: none;
    color:#ffffff;
}
#friend-list .chat-info *{
    text-decoration: none;
    color:#ffffff;
    font-weight: 600;
}

.friend {
    width: 100%;
    height: 60px;
    background: #EEE;
    border-bottom: 2px solid #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 2px;
}

.friend.borderd {
    border:2px solid darkred;
}
.friend.unborderd {
    border:2px solid transparent;
}

.friend img {
    width: 45px;
    height: 45px;
    border-radius: 30px;
    border: 2px solid #AAA;
    object-fit: cover;
    margin-left: 5px;
    margin-right: 10px;
}

.friend .name {
    font-size: 18px;
}

.friend.selected {
    background: rgba(249, 192, 183, 1);
    color: white;
    transition: 0.4s;
}

.friend.selected:hover {
    background: rgba(249, 192, 183, 0.45);
}

.friend.selected img {
    border-color: white;
}

.friend:not(.selected):hover {
    background: #DDD;
}

.chat-block{
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: space-between;
}
.chat-data{
    display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: center;
}
.chat-info{
    display: flex;
    align-items: center;
    gap: 20px;
}


#complete-profile-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fde047; /* أصفر جميل */
    color: #000;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
    z-index: 9999;
}
#complete-profile-banner a {
    color: #1d4ed8;
    text-decoration: underline;
}

