html {
  scroll-behavior: smooth;
}

.stone-container {

  .stone-list {
    padding: 0;
    list-style: none;

    .stone-list-item.active {
      .stone-list-item-link {
        background-color: #75500E;
        color: white;
        border-radius: 0 10px 10px 0;
      }
    }

    .stone-list-item {
      .stone-list-item-link {
        text-decoration: none;
        
        &:hover {
          text-decoration: underline;
        }
      }
    }
  }

  .stone-profile.collapsed {
    .icon-expand {
      display: block;
    }
    .icon-collapse {
      display: none;
    }
    .profile-container {
      display: none;
    }
  }

  .stone-profile {
    border-top: 1px solid #ddd;

    .icon-expand {
      display: none;
    }
    .icon-collapse {
      display: block;
    }

    .profile-header {
      cursor: pointer;
      display: flex;
      flex-direction: row;
      align-items: center;
      
      .stone-name {
        margin: 15px;
      }
    }

    .profile-container {
      display: flex;
      flex-direction: column;

      .stone-images {
        display: flex;
        flex-direction: row;
        margin-bottom: 30px;

        img {
          height: 150px;
          object-fit: contain;
        }
      }

      .stone-props {
        .row {
          display: flex;
          flex-direction: row;
          border-bottom: 1px solid #ddd;
          padding: 10px;

          &:last-child {
            border-bottom: none;
          }

          .label {
            width: 150px;
            font-weight: bold;
            color: #333;
            padding-right: 15px;
            text-align: right;
          }
          .value {
            flex: 1;
            color: #666;
          }
        }
      }
    }

  }

}

@media screen and (min-width: 750px) {
.stone-container {
  display: flex;
  flex-direction: row;

  .stone-list {
    padding-right: 20px;
    list-style: none;

  }

  .stone-profiles {
    flex: 1;
  }

  .stone-profile {
    padding: 0 20px;

    .profile-container {
      padding-left: 50px;

      .stone-images {
        img {
          max-width: 300px;
          height: 200px;
          object-fit: contain;
        }
      }
    }
  }
}
}