@charset "utf-8";
/* CSS Document */

body {
  background: #e6e6e6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

div.DefaultOverflow_y { /* vertical scrollbar */
  width: 340px;
  overflow-y: hidden;
  overflow-x: scroll;
}

div.DefaultOverflow_y::-webkit-scrollbar {
  height: 0px;
}

div.DatabaseOverflow { /*  horizontal scrollbar */
  overflow-x: auto;
  width: 330px;
}

.iphone-13-pro-max {
  width: 300px;               /* Larger than regular 13 */
  height: 592px;              /* 19.5:9 ratio */
  background: #323235;		
  border-radius: 50px;
  padding: 18px;
  box-shadow: 
    0 25px 60px rgba(0,0,0,0.4),
    inset 0 0 5px rgba(255,255,255,0.1);
  position: relative;
}

.screen {
  width: 100%;
  height: 100%;
  background: #606060;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding-top: 37px;
  box-sizing: border-box;
}

.notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 35px;
  background: #1c1c1e;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 2;
}

/* Home indicator */
.screen::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
}

.iphone-13-pro-max {
  width: 90vw;
  max-width: 340px;
  aspect-ratio: 9 / 19.5;
}

.iphone-13-pro-max-body {
  background: #000000;
}
