#singleline {
    display: flex
;
    gap: 10px;
    margin-bottom: 22px;
}
#success-popup {
    display: none;  /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);  /* Overlay background */
    z-index: 9999;
    text-align: center;
}

#popup-content {
    background-color: white;  /* Green background */
    color: #384B77;
    padding: 30px;
    border-radius: 10px;
    display: inline-block;
    width: 300px;  /* Set width */
    margin-top: 15%;
    text-align: center;
}

#close-popup {
    padding: 10px 20px;
    background-color: #384B77;
    color: White;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

#success-popup h2{
   color: #384B77;
    
}

.follow-desc{
    
   
    font-size:12px;
    color:#384B77;
    
}
.follow-desc {
    text-align:left;

    background: #f8f9fa;
    border-left: 4px solid #384B77;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.follow-desc p {
    margin: 0;
    font-size: 14px;
}

 