
.app .new_call {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  padding: 40px 0;
}
.app .new_call .image-container {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items:center;
  flex-direction: column;
}

.app .new_call .image-container img {
  width: 80%;
  border-radius: 100%;
}

.app #volume-visualizer {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  position: absolute;
}

.app #volume-visualizer-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  transition: width 0.1s, height 0.1s, margin 0.1s;
}

.app .bars{
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.app .bar {
  width: 4%;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.6);
  transition: height 0.1s;
  align-content: center;
}

.app .call-details {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
  column-gap: 50px;
  padding: 40px 0px;
}
.app .call-details > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 2;
}

.app .call-details .call-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.app .call-details .right-bar {
  max-width: 320px;
  display: flex;
  row-gap: 30px;
  padding-top: 20px;
}

.app .call-details .call-detail p {
  margin: 0;
}

.app .call-details .transcript {
  border-top: 2px solid #f5f5f509;
  padding-top: 20px;
  margin-top: 20px;
  row-gap: 10px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.app .call-details .transcript > div {
  margin-bottom: 10px;
  align-self: stretch;
}

.app .new-prospect {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7498EB;
  font-size: 1.2em;
}

.app .new-prospect img {
  transition: transform 0.5s ease;
}
.app .new-prospect:hover {
  color: #7498EB;
}
.app .new-prospect:hover img {
  transform: rotate(180deg);
}

.app .call-details .transcript .message-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.app .call-details .transcript .message-name {
  font-weight: 700;
}

.app .call-details .message-info .message-time {
  font-size: 0.8em;
  color: #666;
}

.app .call-details .message-content {
  /* font-size: 1.2em; */
  text-align: left;
}

.app .card {
  margin: 0px;
  padding: 2em;
  border-radius: 20px;
  background-color: #ffffff77;
  align-self: stretch;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: calc(100% - 4em);
}


.app .card h2{
  text-align:left;
  text-wrap: nowrap;
  margin: 0px;
}

.app .card p {
  font-size: 0.95em;
  padding: 0px;
  margin: 0;
  text-align:left;
}

.app #spinner {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
}

.app #spinner img {
  max-width: 800px;
}

.app #spinner h2 {
  position: absolute;
}

.app #new_call {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.app .feedback-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding:40px 0px;
}

.app .feedback-wrapper img {
  height: 100px;
  width: 100px;
  border-radius: 100px;
}

.app .feedback-wrapper h1, .app .feedback-wrapper h2{
  margin:0px;
}

.app .scorecards {
  display: flex;
  width: 100%;
  column-gap: 30px;
  margin: 40px 0px 40px;
}
.app .scorecards .card {
  flex: 1;
}

.app .buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.app .buttons a.button {
  margin: 0;
}

.app .buttons a.call-button {
  margin: 0;
}


@media screen and (max-width: 980px) {
  
  .app .call-details {
    flex-direction: column-reverse;
  }
  .app .call-details .right-bar {
    max-width: 100%;
    flex-direction: row;
    column-gap: 30px;
    padding-bottom: 30px;
  }

  .app .scorecards {
    flex-direction: column;
    row-gap: 30px;
  }


  
}
@media screen and (max-width: 920px) {
  .app .call-details .right-bar {
    flex-direction: column;
  }
}