.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: 20px;
    left: 20px;
    z-index: 9999;
    animation: slideInLeft 0.5s ease-out;
    direction: rtl;
    max-width: 380px;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

#complete-profile-banner .banner-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

#complete-profile-banner .banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #fff9c4 100%);
}

#complete-profile-banner .banner-icon {
    font-size: 36px;
    color: #f59e0b;
    animation: pulse 2s infinite;
    flex-shrink: 0;
    margin-top: 2px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

#complete-profile-banner .banner-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#complete-profile-banner .banner-message {
    color: #78350f;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

#complete-profile-banner .banner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ecb6b5 0%, #d89a9a 100%);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(236, 182, 181, 0.4);
    transition: all 0.3s ease;
    border: none;
    width: fit-content;
    align-self: flex-start;
}

#complete-profile-banner .banner-link:hover {
    background: linear-gradient(135deg, #d89a9a 0%, #c47d7c 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 182, 181, 0.6);
    color: #fff !important;
}

#complete-profile-banner .banner-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

#complete-profile-banner .banner-link:hover i {
    transform: translateX(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    #complete-profile-banner {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: 100%;
    }
    
    #complete-profile-banner .banner-card {
        padding: 18px;
        gap: 12px;
    }
    
    #complete-profile-banner .banner-icon {
        font-size: 32px;
    }
    
    #complete-profile-banner .banner-message {
        font-size: 13px;
    }
    
    #complete-profile-banner .banner-link {
        padding: 9px 18px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #complete-profile-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    
    #complete-profile-banner .banner-card {
        padding: 15px;
        gap: 10px;
    }
    
    #complete-profile-banner .banner-icon {
        font-size: 28px;
    }
    
    #complete-profile-banner .banner-message {
        font-size: 12px;
    }
    
    #complete-profile-banner .banner-link {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Body padding is handled by JavaScript for better browser compatibility */


.h-side{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
