.card-img-top {
    width: 100%;
    height: 200px; /* Set the desired height */
    object-fit: cover; /* This ensures the image covers the area without distortion */
}
#profilePicturePreview{
    width: 150px; 
    height: 150px; 
    border-radius: 50%;
}

.album-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    cursor: pointer;
}

.album-card:hover {
    transform: scale(1.05);
}

.album-title {
    font-size: 1.2em;
    font-weight: bold;
}

.album-description {
    color: #555;
}

#copyMessage{
    display:none; 
    position:absolute; 
    top: 50%;
    left: 50%;
    top:10px; 
    right:10px; 
    
    background-color:green; 
    color:white; 
    padding:10px;
     border-radius:5px;
}

#cardAlbumLink{
    color: inherit !important;
  }

  #cardAlbum , #cardImage{
    transition: transform 0.2s, box-shadow 0.2s;
}

#cardAlbum:hover , #cardImage:hover{
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.copyBtn:hover{
    background-color: blue!important;
}
.copyBtn:active{
    background-color: green!important;
    
}
