

body {
  font-size: 16px;
}

  .image-wrapper {
    position: relative;
    width: 180px; /* Adjusted width */
    height: 120px; /* Adjusted height */
    margin-bottom: .5rem;
  }

  .albums img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .albums img:hover {
  /* Resmi biraz büyüt */
  transform: scale(1.05);
  /* Geçiş efekti için süre belirle */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  /* Basit bir gölge efekti ekle */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

  .image-info {
    line-height: 1.5;
   color: white;
   font-size: 12px;
   letter-spacing: 1.5px;
  }

  .image-type {
    text-align: left;
  }

  .delete-icon {
    font-size: 5px; /* Adjust icon size if needed */
    /* Change color to suit your design */
    cursor: pointer;
    right: 0;
    position: absolute;
    top: 0;
    background-color: crimson !important;
    color: white !important; 
    border-radius: 100% !important;

  }

  .delete-icon:hover {
    background-color: crimson;
    color: white; 
  }

  .swal2-deny {
    display: none !important;
  }