/* Guestbook related */

.phone {
  position: relative;
  width: 450px;
  height: var(--phone-screen-height);
  margin: auto;
  border: 16px #c933cc solid;
  border-top-width: 60px;
  border-bottom-width: 60px;
  border-radius: 36px;
  
}

.guestbookbar {
  height: var(--user-bar-height);
  background-color: #c933cc;
  display: flex;
  align-items: center;
  width: 450px;
}

.guestbookSettings {
  margin-left: auto;
  width: 25px;
  min-width: unset;
  padding: 0;
}

.userbar {
  height: var(--user-bar-height);
  background-color: #c933cc;
  display: flex;
  align-items: center;
  width: 450px;
}

.userProfBig {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  margin-left: 4px;
  vertical-align: middle;
  overflow: hidden; 
  border: black 1px solid;
}

.userProf {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  margin: 2px 10px 10px 50px;
}

.userProfsmall {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: white;
  margin: 2px 10px 10px 0px;
  overflow: hidden; 
}

.chatSection {
  display: inline-block; 
  width: 390px; 
  vertical-align: middle;
}

.profilePicGuest {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.userNameBar {
  display: inline-block;
  color: black;
  line-height: 0.9;
}


.profileBarCenter {
  width: fit-content;
  margin: auto;
  display: flex;
}

.guestbookName {
  font-size: 24pt;
  display: inline-block;
}

.userStatus {
  margin: 0;
  color: #0202029a;
  padding-bottom: 8px;
}

.userName {
  color: black;
}

.phone-background {
  background-image: url("/images/mainimages/phone.png");
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 100px 80px ;
  position: absolute;
}

.phone-screen {
	width: 453px;
	height: calc(var(--phone-screen-height) - var(--user-bar-height));
	/*background: white;*/
	background-image: url("/images/mainimages/pawbackground.png");
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: rgba(255,255,255,0.7);
	background-blend-mode: lighten;
	color: black;
	overflow-y: scroll;
	overflow-x: hidden;
	scrollbar-color: #9310d0 var(--button-face);
	scrollbar-width: thin;
}

   /* width */
.phone-screen::-webkit-scrollbar {
 	width: 2px;
}

/* Track */
.phone-screen::-webkit-scrollbar-track {
  	background: var(--button-face);
}

/* Handle */
.phone-screen::-webkit-scrollbar-thumb {
  	background: #9310d0;
}

.phone-screen h1 {
	color: inherit;
}

.commentForm {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	margin-bottom: 0;
	max-height: 75px;
}

  .phonebar {
    display: inline-block;
    width: 86%;
    height: 35px;
    color: #9310d0;
    background-color: #f797f7;
    border: none;
    padding: 0 2px 0 2px;
    font-family: 'pixelifysans';
  }

  .phonebar:focus {
    outline: none;
  }

  .phonebar::-webkit-input-placeholder{
    color: #9310d0;
    font-family: 'pixelifysans';
}

  .sendcomment {
    display: inline-block;
    width: 12%;
    height: 35px;
    padding: 0 !important;
    min-width: unset !important;
  }

  .commentcont {
    margin-bottom: 60px;
    padding: 0px 5px;
    
  }

  .commentBoxContTop {
    display: flex;
  }

  .commentBoxProfile {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: black 1px solid;
    margin: 2px 10px 10px 5px;
    overflow: hidden;
  }

   .commentBoxName {
    color: black;
    margin-bottom: 0;
    display: inline-block;
  }

  .commentBox {
    margin-top: 0;
    color: black;
  }

.pixel-corners {
  clip-path: polygon(
    0px calc(100% - 30px),
    6px calc(100% - 30px),
    6px calc(100% - 18px),
    12px calc(100% - 18px),
    12px calc(100% - 12px),
    18px calc(100% - 12px),
    18px calc(100% - 6px),
    30px calc(100% - 6px),
    30px 100%,
    calc(100% - 30px) 100%,
    calc(100% - 30px) calc(100% - 6px),
    calc(100% - 18px) calc(100% - 6px),
    calc(100% - 18px) calc(100% - 12px),
    calc(100% - 12px) calc(100% - 12px),
    calc(100% - 12px) calc(100% - 18px),
    calc(100% - 6px) calc(100% - 18px),
    calc(100% - 6px) calc(100% - 30px),
    100% calc(100% - 30px),
    100% 30px,
    calc(100% - 6px) 30px,
    calc(100% - 6px) 18px,
    calc(100% - 12px) 18px,
    calc(100% - 12px) 12px,
    calc(100% - 18px) 12px,
    calc(100% - 18px) 6px,
    calc(100% - 30px) 6px,
    calc(100% - 30px) 0px,
    30px 0px,
    30px 6px,
    18px 6px,
    18px 12px,
    12px 12px,
    12px 18px,
    6px 18px,
    6px 30px,
    0px 30px
  );
}

.gbSettings {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 330px;
  height: 500px;
  background-color:#c933cc;
  border: #9310d0 2px solid;
  border-radius: 10%;
}