/* Phone Number Lookup Page Styles */
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 19px;
  list-style: none;
  border-radius: 2px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li::before {
  content: "/";
  padding: 0 5px;
  color: #ccc;
}
.widgets-bar {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin: 13px 0 30px 0;
}
.by-author {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  color: #797979;
}
@media screen and (min-width: 768px) {
  .by-author {
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
.by-author__by {
  margin-right: 3px;
}
.by-author__author-credentials {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.by-author__author-name {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  .by-author__author-metadata--inline {
    display: -webkit-flex;
    display: flex;
  }
}
.by-author__author {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}
.by-author__image {
  display: -webkit-flex;
  display: flex;
  border-radius: 50%;
  margin: 2px 10px 0 0;
  width: 35px;
  height: 35px;
}
@media screen and (min-width: 768px) {
  .by-author__image {
    margin: 4px 10px 0 -1px;
  }
}
.by-author__pubdate {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.by-author__extended {
  border-top: 1px solid #d5d5d5;
  margin-top: 50px;
  padding-top: 20px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.by-author__extended .by-author__by {
  font-size: 16px;
  line-height: 40px;
  font-weight: 700;
  color: #2d2d2d;
  display: -webkit-flex;
  display: flex;
}
.by-author__extended .by-author__author-credentials,
.by-author__extended .by-author__author-name {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.by-author__extended .by-author__pubdate {
  display: none;
}
.by-author__extended .by-author__image {
  width: 40px;
  height: 40px;
  border: 1px solid #ff4a64;
  padding: 1px;
}
.by-author__extended .by-author__author {
  font-size: 16px;
  line-height: 40px;
  font-weight: 700;
  color: #ff4a64;
}
.by-author__extended .by-author__bio {
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  color: #2d2d2d;
  margin-top: 12px;
  max-width: 500px;
}
.by-author__extended .by-author__social {
  margin-top: 20px;
  width: 100%;
}
.by-author__extended .by-author__social .social-share__button:not([data-role-id='open']) {
  display: none;
}

/* Complaint breakdown styles */
.complaint-breakdown {
  margin: 15px 0;
}
.complaint-type {
  margin-bottom: 10px;
  position: relative;
}
.complaint-bar {
  background-color: #e74c3c;
  height: 8px;
  border-radius: 4px;
  margin-bottom: 4px;
  min-width: 3%;
}
.complaint-label {
  font-size: 14px;
}

/* Geographic report styles */
.geo-report table,
.timeline-report table {
  width: 100%;
  margin: 15px 0;
}
.geo-report table th,
.geo-report table td,
.timeline-report table th,
.timeline-report table td {
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
}
.geo-report table th,
.timeline-report table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

/* Related numbers styles */
.related-numbers ul {
  list-style: none;
  padding: 0;
}
.related-numbers li {
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}
.related-numbers a {
  font-weight: 500;
  color: #2f55d4;
}
.related-numbers .complaint-count {
  color: #888;
  font-size: 13px;
}

/* Call type analysis */
.call-type-bar {
  display: flex;
  height: 30px;
  border-radius: 6px;
  overflow: hidden;
  margin: 15px 0;
}
.call-type-bar .robocall-segment {
  background-color: #e74c3c;
}
.call-type-bar .live-segment {
  background-color: #3498db;
}
.call-type-bar .unknown-segment {
  background-color: #95a5a6;
}
.call-type-legend {
  display: flex;
  gap: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}
.call-type-legend span::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  margin-right: 5px;
  vertical-align: middle;
}
.call-type-legend .robocall::before { background-color: #e74c3c; }
.call-type-legend .live::before { background-color: #3498db; }
.call-type-legend .unknown::before { background-color: #95a5a6; }
