@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Cormorant:wght@400;600&family=Poppins:wght@300;400&display=swap");

/*.background{
    display: flex;
    width: 100%;
    margin: 0%;
    height: 100%;
    justify-content: center;
    
}  */

body{
    background-image: url('Screenshot\ 2025-10-29\ 174545.png') ;

}

header{
    
    background-color: white;
    margin: 0%;
    justify-items: center;
    

}

.logo{
    display:flex;
    justify-self: center;
    
    
   
}

.wrapper{
    gap: 15px;
    margin: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fill,265px);
}

.wrapper li{
    height: 250px;
    list-style: none;
    background: #fff;
    border-radius: 5px;
    padding: 15px 20px 20px;
}

.add-box, .icon, .bottom-content, .settings, .popup, .menu li{
    display: flex;
    align-items: center;
    justify-content: space-between;


}

.add-box{
    flex-direction: column;
    justify-content: center;
    cursor: pointer;

}

.add-box .icon{
    font-size: 40px;
    height: 78px;
    color: cadetblue;
    width: 78px;
    border-radius: 50%;
    border: 2px dashed cadetblue;
    justify-content: center;
}

.add-box p{
    color:cadetblue;
    font-weight: 500;
    margin-top: 20px;
}

.wrapper .note{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.note p{
    font-size: 22px;
    font-weight: 500;
}

.note span{
    display: block;
    color: #575757;
    font-size: 16px;
    margin-top:5px;
}

.note .bottom-content{
    padding-top:10px;
    border-top:1px solid #ccc;

}

.bottom-content span{
    color:#6d6d6d;
    font-size:14px;

}

.bottom-content .settings i{
    color:#6d6d6d;
    font-size:14px;
    cursor: pointer;
}

.settings{
    position: relative;
}

.settings .menu{
    position:absolute;
    bottom: 0;
    border-radius: 4px;
    right: -5px;
    padding:5px 0;
    background: #fff;

    transform-origin: bottom right;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.settings .menu {
  transform: scale(0);
}

.settings.show .menu {
  transform: scale(1);
}

.settings:hover .menu{
    transform: scale(1);
}


.settings .menu li{
    height: 25px;
    border-radius: 0;
    cursor: pointer;
    font-size: 16px;
    padding:17px 15px;
    justify-content: flex-start;
}

.menu li:hover{
     background: #f5f5f5;
}

menu li i{
    padding-right: 8px;

}

.popup-box{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.popup-box .popup{
    position: absolute;
    top:50%;
    left: 50%;
    z-index: 3;
    max-width: 400px;
    width: 100%;
    justify-content: center;
    
    transform: translate(-50%, -50%);
}

.popup-box {
  opacity: 0;
  pointer-events: none;
}

.popup-box.show {
  opacity: 1;
  pointer-events: auto;
}

.popup .content{
    background: #fff;
    width: calc(100% - 15px);
    border-radius: 5px;
}

.popup .content header{
    padding: 15px 25px;
    border-bottom: 1px solid #ccc;
}

.content header p{
    font-size: 20px;
    font-weight: 500;
}

.content header i{
    color: #8b8b8b;
    cursor: pointer;
    font-size: 23px;
}

.content form{
    margin: 15px 25px 35px;
}

.content form .row{
    margin-bottom: 20px;
}

form .row label{
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}


.content form :where(input,textarea){
    width: 100%;
    height: 50px;
    outline: none;
    font-size: 17px;
    padding: 0 15px;
    border-radius: 4px;
    border: 1px solid #999;
}

.content form textarea{
    height: 150px;
    resize: none;
    padding: 8px 15px;
}

.content form button{
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    border-radius: 4px;
    background: cornflowerblue ;
}

.wrapper .note {
    height: auto;
    min-height: 150px;
}

.bottom-content span {
    display: none;
}

.wrapper {
    grid-auto-rows: minmax(150px, auto);
}


.spotify-section {
  max-width: 800px;
  margin: 80px auto;
  padding: 40px 50px;
  text-align: center;
  
  border-radius: 20px;
}