

/**********************************
Project Details Page (below) - projects Card swipe css
**********************************/

body.project {
.list-section {
  /* padding: 20px; */
  /* max-width: 600px; */
  margin: 0;
}

.list-section h2 {
  font-size: 1rem;
  color: #1d1d1f;
  margin-bottom: 0;
}

.app-list {
  /* list-style-type: none; */
  /* padding: 0; */
}

.list-item {
  display: flex;
  height: 80px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #ccc; /* Separator line */
}

.list-item:last-child {
    border-bottom: none; /* Remove separator from the last card */
}

.list-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ffffff, #e6e6e6); /* Gradient background for depth */
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* .list-icon img {
  width: 60; 
  height: 60; 
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)); 
} */


.list-info {
  flex-grow: 1;
}

.list-name {
  display: inline-block;
  font-size: 0.8rem;
  color: #1d1d1f;
  display: block;
  vertical-align: top;
}

.list-type {
  font-size: 0.6rem;
  color: #6e6e73;
  display: block;
}

.list-button {
  border: 0;
  outline: 0;
  cursor: pointer;
  background-color: rgb(0, 0, 0, 0.1);
  color: var(--text-secondary);
  font-weight: 600;
  border-radius: 100px;
  font-size: 0.8rem;
  /* font-weight: 300; */
  padding: 4px 8px;
  /* max-height: 28px; */
}

.list-button:hover {
  color: white;
  background-color: #0066d3;
}
}

/**********************************
Landing Page Styles
**********************************/
body.landing {

  .list-section {
    margin: 0;
  }

  .list-section h2 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0;
  }

  .app-list {
    /* Optional: list-style-type: none; padding: 0; */
  }

  .list-item {
    display: flex;
    height: 80px;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
  }

  .list-item:last-child {
    border-bottom: none;
  }

  .list-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--icon-gradient-start), var(--icon-gradient-end));
    box-shadow: 
      var(--icon-shadow-outset),
      var(--icon-shadow-inset);
  }

  .list-info {
    flex-grow: 1;
  }

  .list-name {
    display: block;
    font-size: 0.8rem;
    color: var(--text-primary);
  }

  .list-type {
    font-size: 0.6rem;
    color: var(--text-secondary);
  }

  .list-button {
    border: 0;
    outline: 0;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
    font-weight: 600;
    border-radius: 100px;
    font-size: 0.8rem;
    padding: 4px 8px;
    transition: all 0.3s ease;
  }

  .list-button:hover {
    color: var(--text-primary);
    background-color: var(--blue-accent-hover);
  }
}