.cc-wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 420px);
  /* grid-template-columns: 1fr 1fr; */
  /* grid-template-columns: repeat(auto-fit, minmax(350px, 420px)); */
}

/* CARD */
.cc-card {
  background: #f7f9fc;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}

/* CONTENT */
.cc-content {
  width: 100%;
}

.img-wrapper img {
  width: 70px;
  border-radius: 50%;
}

/* HEADER */
.cc-header {
  display: flex;
  justify-content: space-between;
  /* IMPORTANT CHANGE */
  align-items: flex-start;
}
.cc-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.cc-header .cc-phone {
  margin-top: 4px;
  color: #1a73e8;
  font-size: 14px;
}
.cc-header {
  /* NEW WRAPPER */
}
.cc-header .cc-status-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cc-header .cc-status-wrap .cc-status {
  background: #4caf50;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.cc-header .cc-status-wrap .cc-status.closed {
  background: #e0b96a;
  color: #000;
}
.cc-header .cc-status-wrap .cc-note {
  font-size: 12px;
  color: #9aa5ad;
  margin-top: 4px;
}

/* DIVIDER */
.cc-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 12px 0;
}

/* TIME */
.cc-time {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

/* BOTTOM */
.cc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cc-bottom .cc-service {
  font-size: 14px;
  color: #666;
  max-width: 65%;
}
.cc-bottom .cc-call {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.cc-bottom .cc-call.disabled {
  background: #b0bec5;
  pointer-events: none;
  opacity: 0.7;
}

.employee-header {
  background: #fff;
  border: 1px solid #e6eaf0;
  border-radius: 12px;
  padding: 20px;
}

/* TOP ROW */
.emp-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT */
.emp-left {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* NAME LINE */
.emp-name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.emp-name h2 {
  margin: 0;
  font-size: 18px !important;
}

/* STATUS */
.status {
  background: #e6f7ec;
  color: #1a7f37;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 6px;
}

/* META */
.emp-meta {
  margin-top: 5px;
  font-size: 13px;
  color: #6b7280;
}

/* BUTTON */
.btn-request {
  border: 1px solid #2d6cdf;
  color: #2d6cdf;
  background: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
}

/* HEADER DIVIDER */
.header-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 15px 0;
}

/* STATS */
.emp-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* EACH STAT */
.stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stat span {
  font-size: 12px;
  color: #6b7280;
}
.stat p {
  margin: 0;
  font-weight: 500;
}

/* ICON */
.icon-box {
  width: 36px;
  height: 36px;
  background: #eef4ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* VERTICAL DIVIDER */
.divider {
  width: 1px;
  height: 35px;
  background: #e5e7eb;
}

.employee-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 18px;
}
.employee-wrapper .emp-content {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  min-height: 300px;
}
.employee-wrapper .emp-content .tab-content {
  display: none;
}
.employee-wrapper .emp-content .tab-content img {
  width: 70px;
}
.employee-wrapper .emp-content .tab-content.active {
  display: block;
}
.employee-wrapper .emp-content .tab-content div {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}
.employee-wrapper .emp-content .tab-content div strong {
  color: #555;
  margin-right: 6px;
}
.employee-wrapper .emp-content .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.employee-wrapper .emp-content .info-grid .info-item {
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}
.employee-wrapper .emp-content .info-grid .info-item:nth-last-child(-n+3) {
  border-bottom: none !important;
}
.employee-wrapper .emp-content .info-grid .info-item:not(:nth-child(3n)) {
  border-right: 1px solid #eee;
}
.employee-wrapper .emp-content .info-grid .info-item .label {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 6px;
}
.employee-wrapper .emp-content .info-grid .info-item .value {
  display: block;
  font-size: 15px;
  color: #222;
  font-weight: 500;
}
.employee-wrapper .tab-header h3 {
  margin: 0;
  font-size: 18px;
  color: #1a4fff;
  font-weight: 600;
}
.employee-wrapper .tab-header p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #777;
}
.employee-wrapper .emp-sidebar {
  width: 220px;
  flex-shrink: 0;
}
.employee-wrapper .emp-sidebar .tabs {
  list-style: none;
  padding: 10px;
  margin: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.employee-wrapper .emp-sidebar .tabs li {
  padding: 12px 14px;
  cursor: pointer;
  border-radius: 6px;
  color: #333;
  font-size: 14px;
  transition: all 0.2s ease;
}
.employee-wrapper .emp-sidebar .tabs li:not(:last-child) {
  margin-bottom: 5px;
}
.employee-wrapper .emp-sidebar .tabs li:hover {
  background: #f5f7fb;
}
.employee-wrapper .emp-sidebar .tabs li.active {
  background: #e9efff;
  color: #1a4fff;
  font-weight: 600;
}

/*# sourceMappingURL=contact-card.css.map */
