/* Cards */
.wrapper .card {
  background: #fff;
  height: 300px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

.wrapper .card .circle {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  cursor: default;
}

.card .circle .box,
.card .circle .box span {
  position: absolute;
  top: 50%;
  left: 50%;
}

.card .circle .box {
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.2s;
}

.card .circle .box span,
.wrapper .card .text {
  background: #777;
  background-color: #777;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.circle .box span {
  font-size: 38px;
  font-family: sans-serif;
  font-weight: 600;
  transform: translate(-45%, -45%);
  transition: all 0.1s;
}

.card .text {
  font-size: 14px;
  font-weight: 600;
}

/* Responsive */
@media(max-width: 753px) {
  .wrapper {
    max-width: 700px;
  }
  .wrapper .card {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}

@media(max-width: 505px) {
  .wrapper {
    max-width: 500px;
  }
  .wrapper .card {
    width: 100%;
  }
}

/* Badge */
.char-badge {
  background-color: #f48220;
  color: #fff;
  padding: 3px 9px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Tab menu */
.bhoechie-tab-menu .list-group-item {
  cursor: pointer;
}

.bhoechie-tab-menu .list-group-item.active {
  background: #ffffff;
  color: #fff;
  border-color: #9d9fa1;
}

/* Tab content */
.bhoechie-tab-content {
  display: none;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
}

.bhoechie-tab-content.active {
  display: block;
}

.profile-show {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

/* Active tab arrow */
.bhoechie-tab-menu .list-group-item.active::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -13px;
  border-bottom: 13px solid transparent;
  border-top: 13px solid transparent;
  border-left: 10px solid #acacac;
}

/* Google result card */
.google-result {
  max-width: 600px;
}

/* Favicon */
.result-favicon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f3f4;
  color: #5f6368;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Site info */
.result-site-name {
  font-size: 14px;
  font-weight: 500;
  color: #202124;
}

.result-url {
  font-size: 12px;
  color: #006621;
}

/* Title */
.result-title {
  display: block;
  font-size: 20px;
  line-height: 1.3;
  color: #1a0dab;
  text-decoration: none;
  margin-bottom: 4px;
}

.result-title:hover {
  text-decoration: underline;
}

/* Description */
.result-description {
  font-size: 14px;
  line-height: 1.58;
  color: #4d5156;
  margin-bottom: 0;
}

/* OG card */
.og-card {
  border: 1px solid #dadde1;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.og-img {
  width: 100%;
  display: block;
}

.og-body {
  padding: 12px;
}

.og-title {
  font-size: 16px;
  font-weight: 600;
  color: #1c1e21;
  line-height: 1.3;
  margin-bottom: 4px;
}

.og-desc {
  font-size: 14px;
  color: #606770;
  line-height: 1.4;
}

.og-domain {
  font-size: 12px;
  color: #606770;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Facebook / WhatsApp */
.fb-card .og-title {
  font-size: 15px;
}

/* LinkedIn */
.linkedin-card .og-title {
  font-size: 17px;
  margin-bottom: 6px;
}

.linkedin-card .og-domain {
  margin-top: 6px;
}

/* Twitter (X) */
.twitter-card .og-title {
  font-size: 15px;
}

.twitter-card .og-desc {
  font-size: 13px;
}

/* Bing */
.bing-card {
  max-width: 600px;
  font-family: Arial, Helvetica, sans-serif;
}

.bing-url {
  font-size: 12px;
  color: #006d5b;
  margin-bottom: 4px;
}

.bing-title {
  font-size: 20px;
  color: #0a58ca;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.3;
}

.bing-title:hover {
  text-decoration: underline;
}

.bing-desc {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.5;
}
