/**
 * Webcall button styling
 */

/* Content styling */
.webcall-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  margin: 0 0.5rem;
}

.webcall-title-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0.25rem;
}

.webcall-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  margin-left: 0.25em;
}

.webcall-subtext {
  font-size: 12px;
  line-height: 1.3;
  margin: 4px 0 0 0;
  opacity: 0.7;
}

/* Responsive design */
@media (max-width: 600px) {
  .webcall-icon-left,
  .webcall-icon-right {
    margin: 0 0.25rem;
  }

  .webcall-title-section,
  .webcall-content {
    margin: 0 0.25rem;
  }

  .webcall-title {
    font-size: 16px;
  }

  .webcall-subtext {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .webcall-title {
    font-size: 14px;
  }

  .webcall-subtext {
    font-size: 10px;
  }

  .webcall-icon-left img {
    width: 32px !important;
    height: 32px !important;
  }
}

/* Ultra-small screen styling */
@media (max-width: 320px) {
  .webcall-title-section,
  .webcall-content {
    margin: 0 0.15rem;
  }

  .webcall-title {
    font-size: 11px;
    margin-left: 0.1em;
    line-height: 1.2;
  }

  .webcall-subtext {
    font-size: 8px;
    line-height: 1.1;
  }

  .webcall-icon-left img {
    width: 26px !important;
    height: 26px !important;
  }
}
