.modal-container { 
    height:100%;
    width: 100%;
    padding: 50px 25px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;    
}

.like-content {
    display: flex; 
    flex-direction: column; 
    justify-content: center;    
    border-radius: 10px;
    background: #FFF;    
    width: 100%;
    height: 150px;        
    padding: 30px 15px;
}

.like-content h1 {
    color: #094DA4;
    text-align: center;
    font-family: Lobster;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; 
}

.like-content .end-text {
    display:none;
    color: #252525;
    text-align: center;    
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
    margin-top:20px;

}

.buttons-container{
    display: flex;
    width: 100%;
    max-width: 280px;
    padding: 0px 20px;
    gap: 20px;
    margin: auto;
    align-self: center;
}


@media screen and (min-width: 768px) {
    .modal-container {            
        padding: 55px 0px;   
    }
    .like-content {
        max-width:700px;        
        height: 150px;           
        align-self:center;
        margin: auto;    
        padding: 10px 15px 30px; 
    }

    .like-content h1 {
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        margin-bottom: 30px;
    }

    .like-content .end-text {
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        margin-bottom: 0px;

    }

    .buttons-container{
        
        max-width: 420px;
        padding: 0px 0px;
        gap: 60px;
        margin: auto;
        align-self: center;
    }
    
    
}



/* Standard button styles */
.like-button {
    display: flex;
    width: 180px;
    height: 40px;
    border-radius: 30px;
    border: none;
    background-color: #F49811;
    color: white;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .like-button:hover {
    background-color: white;
    border: 1px solid #F49811;
    color: #F49811;
  }
  
  .uppercase {
    text-transform:uppercase
  }
  
 