html,
body {
  overscroll-behavior-y: contain;
  touch-action: none;
  /* Or 'none' for full disable */
}

body {
  font-family: "Inter", sans-serif;
  background: #f5f7fa;
  color: #333;
  margin: 0;
  padding: 0;
}

.material-icons {
  font-size: 24px;
  /* Adjust size as needed */
}
.in-coming-call {
  position: fixed;
  flex-direction: column;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(245, 253, 255, 1) 0%,
    rgba(92, 179, 255, 1) 58%,
    rgba(72, 138, 219, 1) 100%
  );
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.container {
  display: flex;
  margin: 0 auto;
  padding: 20px;
  height: 100dvh;
  max-height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
  background-color: #e5e5f7;
  opacity: 0.8;
  flex-direction: column;
  justify-content: space-between;

  background: linear-gradient(135deg, #b2d0b355 25%, transparent 25%) -10px 0/
      20px 20px,
    linear-gradient(225deg, #b2d0b3 25%, transparent 25%) -10px 0/ 20px 20px,
    linear-gradient(315deg, #b2d0b355 25%, transparent 25%) 0px 0/ 20px 20px,
    linear-gradient(45deg, #b2d0b3 25%, #e5e5f7 25%) 0px 0/ 20px 20px;
}

h2 {
  text-align: center;
  color: #4c4eaf;
}

.peer-info {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

input[type="text"],
textarea,
input[type="file"] {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

textarea {
  height: 80px;
  resize: none;
}

button {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 10px 16px;
  margin: 0 10px;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

.chat {
  flex: auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  height: 250px;
  overflow-y: auto;
  margin-bottom: 10px;
}

.msg {
  margin-bottom: 8px;
}

.msg.own {
  text-align: right;
  color: #2e7d32;
}

.file-link {
  display: inline-block;
  margin-top: 5px;
}

video {
  width: 100%;
  max-height: 300px;
  border-radius: 10px;
  margin-top: 10px;
  background: #000;
  object-fit: cover;
}

.error-msg {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
}

.error-msg > div {
  background-color: #600;
  color: #ff0;
  padding: 0.5rem;
  margin: 0.5rem 0;
  font-size: 10pt;
  font-family: "Courier New", Courier, monospace;
  border-radius: 4px;
  cursor: pointer;
}

.elFullScreen {
  display: inherit !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  min-height: 100vh;
  box-sizing: border-box;
  border-radius: 0;
  margin: 0;
  padding: 0;
  z-index: 5;
}

.videoPreview {
  display: inherit !important;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: inherit;
  max-width: 11rem;
  z-index: 6;
}

.display_hide {
  display: none;
}

#end-call {
  /* position: absolute;
  bottom: 1rem;
  left: 1rem; */
  background: red;
  /* z-index: 11; */
}
.call-button-wrapper {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
}
