@import url('https://fonts.googleapis.com/css2?family=Playwrite+DE+Grund:wght@100..400&display=swap');
 * {
  scrollbar-width: thin;
  font-family: PT Sans;
 }
  /* Custom CSS */
  .grid {
    display: grid;
    gap: 1rem; /* Adjust gap between items */
  }

  .grid > div:first-child img {
    width: 100%;
    height: 550px;
    max-width: 100%;
    border-radius: 0.5rem; /* Rounded corners for the main image */
    object-fit: cover;
    object-position: center;
  }

  .grid-cols-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns grid */
    gap: 1rem; /* Adjust gap between images */
  }

  .grid-cols-5 img {
    width: 100%;
    height: 200px;
    max-width: 100%;
    border-radius: 0.5rem; /* Rounded corners for the smaller images */
    object-fit: cover;
    object-position: center;
    cursor: pointer;
  }


  .dialog-backdrop {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    backdrop-filter: blur(4px); /* Blur effect for backdrop */
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  
  /* Show backdrop when active */
  .dialog-backdrop.active {
    opacity: 1;
  }
  
  /* Dialog content */
  .dialog-content {
    position: relative;
    /* max-height: 80vh;
    min-height: 300px; */
    max-width: calc(80vh);
    min-width: calc(200px);
    /* width: 75%; */
    /* min-width: 75%;
    max-width: 75%;
    max-height: 90vh; Maximum height for the dialog */
    /* overflow-y: auto; Enable scrolling if content exceeds height */
    /* background-color: #fff; */
    /* border-radius: 10px; */
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #4a5568;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* Shadow effect */
  }
  
  /* Dialog header */
  .dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #edf2f7; /* Light border bottom */
  }
  
  .dialog-profile-picture {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
  }
  
  .dialog-profile-info {
    margin-left: 12px;
  }
  
  .dialog-profile-name {
    font-size: 1rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 4px;
  }
  
  .dialog-profile-username {
    font-size: 0.875rem;
    font-weight: 400;
    color: #718096;
  }
  
  .dialog-header-right {
    display: flex;
    gap: 12px;
  }
  
  .dialog-button {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: none;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .dialog-button:hover {
    background-color: #edf2f7; /* Light gray background on hover */
  }
  
  .dialog-button.dialog-download-button {
    background-color: #2b6cb0; /* Blue background */
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
  }
  
  .dialog-button.dialog-download-button:hover {
    background-color: #2c5282; /* Darker blue on hover */
  }
  
  .dialog-button.dialog-share-button {
    border: 1px solid #2b6cb0; /* Blue border */
    color: #2b6cb0;
    border-radius: 4px;
  }
  
  .dialog-button.dialog-share-button:hover {
    background-color: #2b6cb0; /* Blue background on hover */
    color: #fff;
  }
  
  .dialog-button-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  
  /* Dialog image */
  .dialog-image {
    padding: 0;
    /* border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7; */
  }
  
  .dialog-image-full {
    width: 100%;
    object-fit: cover;
    object-position: center;
    max-height: 30rem; /* Maximum height for the image */
  }
  
  /* Dialog footer */
  .dialog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-top: 1px solid #edf2f7;
  }
  
  .dialog-stats {
    display: flex;
    gap: 32px;
  }
  
  .dialog-stat {
    text-align: center;
  }
  
  .dialog-stat-label {
    font-size: 0.875rem;
    font-weight: 400;
    color: #718096;
  }
  
  .dialog-stat-value {
    font-size: 1rem;
    font-weight: 500;
    color: #2d3748;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .dialog-content {
      width: 90%;
      min-width: 90%;
      max-width: 90%;
    }
  }

/* 

  font-size: 1.18em;
  line-height: 1.64;
  color: rgba(0,0,0,0.8); */