@charset "utf-8";
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    display: none;
    z-index: 9999;
    transition: opacity 0.3s ease;
  }

  .notification.error {
    background: #f44336;
  } 
    .btn-link {
      display: inline-block;
      padding: 10px 20px;
      background-color: #007BFF;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 500;
      transition: background-color 0.3s ease, box-shadow 0.2s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .btn-link:hover {
      background-color: #0056b3;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .btn-link:active {
      background-color: #004494;
    }
 
  .gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .photo-wrapper {
    position: relative;
    display: inline-block;
  }

  .photo-wrapper img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .delete-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
  }
 
  .modal {
    position: fixed;
    top: 0; 
	  left: 0; 
	  width: 100%; 
	  height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex; justify-content: center; align-items: center;
  }
  .modal-content {
    background: #fff; padding: 20px; border-radius: 10px; width: 700px;
  }
 
.preview-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
z-index: 999;
}

.preview-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
	z-index: 999;
}

