@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;
}

.input-wrapper input[type="submit"],button[type="submit"] {
  -webkit-appearance: none;   /* Removes iOS default styling */
  appearance: none;
  border-radius: 8px;         /* Control rounding yourself */
  border: none;
  background-color: #007aff;  /* iOS-style blue */
  color: #ffffff;
  font-size: 16px;            /* Prevents zoom on focus */
  padding: 12px 20px;
  width: 100%;
  cursor: pointer;
}

.input-wrapper input {
  width: 100%;
  padding: 7px 8px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #e5e5ea;
  background: #f9f9fb;
  outline: none;
  transition: 0.2s;
}

.input-wrapper input:focus {
  border-color: #007aff;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0,122,255,0.15);
}

.thin-rounded {
  width: 300px;
  padding: 8px 12px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #e5e5ea;
  background: #ffffff;
  outline: none;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.thin-rounded:focus {
  border-color: #007aff;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.15);
}

