* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
  font-family: BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
}

p {
  margin-bottom: 1.5em;
  line-height: 1.4285em;
}

.mobile-phone {
  background-color: #111;
  border-radius: 42px;
  width: 100%;
  max-width: 360px;
  height: 100%;
  max-height: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px #0000004d;
}

@media (width <= 768px) {
  .mobile-phone {
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
  }
}

.phone-screen {
  background-color: #fff;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.phone-header {
  z-index: 10;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e1e4e8;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  display: flex;
}

.caller-info {
  align-items: center;
  display: flex;
}

.profile-picture {
  border: 2px solid #4caf50;
  border-radius: 50%;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: none;
  overflow: hidden;
}

.profile-picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.caller-details {
  flex-direction: column;
  justify-content: center;
  margin-left: 12px;
  display: flex;
}

.caller-name {
  color: #333;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
}

.call-duration {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

.transcription-container {
  background-color: #f8f9fa;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 15px;
  display: flex;
  overflow-y: auto;
}

.call-controls {
  background-color: #f8f9fa;
  border-top: 1px solid #e1e4e8;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  display: flex;
}

.call-button {
  cursor: pointer;
  background-color: #4caf50;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  transition: all .3s;
  display: flex;
  box-shadow: 0 4px 8px #0003;
}

.call-button:hover {
  transform: scale(1.05);
}

.call-button:active {
  transform: scale(.95);
}

.call-button.active {
  background-color: #f44336;
}

.call-button svg {
  fill: #fff;
  width: 28px;
  height: 28px;
}

.end-call-icon, .call-button.active .start-call-icon {
  display: none;
}

.call-button.active .end-call-icon {
  display: block;
}

.transcript-message {
  word-wrap: break-word;
  border-radius: 16px;
  max-width: 80%;
  padding: 10px 12px;
  font-size: 14px;
  animation: .3s ease-out messageAppear;
  position: relative;
}

@keyframes messageAppear {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.transcript-message.user {
  color: #fff;
  background-color: #2563eb;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.transcript-message.assistant {
  color: #334155;
  background-color: #e2e8f0;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.transcript-timestamp {
  opacity: .7;
  text-align: right;
  margin-top: 4px;
  font-size: 9px;
}

.evaluation-screen {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  display: flex;
}

.evaluation-screen p {
  color: #4b5563;
  margin-top: 20px;
  font-size: 18px;
}

.loading-spinner-large {
  border: 5px solid #e5e7eb;
  border-top-color: #3b82f6;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: 1s linear infinite spin;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.site-header {
  background-color: #fff;
  width: 100%;
  padding: 15px 0;
  box-shadow: 0 1px 3px #0000001a;
}

.header-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
}

.logo img {
  height: 40px;
  display: block;
}

.page-title h1 {
  color: #333;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

@media (width <= 600px) {
  .header-container {
    text-align: center;
    flex-direction: column;
  }

  .logo {
    margin-bottom: 10px;
  }
}
/*# sourceMappingURL=app.8ecabfeb.css.map */
