.temp2Orders_breadcrumb {
  font-size: 14px;
  color: #555;
  margin: 20px 0 0;
  padding-left: 20px;
}

.temp2Orders_breadcrumb a {
  color: #9a9a9a;
  text-decoration: none;
}

.temp2Orders_breadcrumb a:hover {
  text-decoration: underline;
}

.temp2Orders_container {
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 20px;
}

.temp2Orders_heading {
  font-size: 28px;
  margin-bottom: 15px;
}

.temp2Orders_tabs {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  gap: 20px;
  overflow-x: auto;
}

.temp2Orders_tab {
  padding: 10px 0;
  font-weight: 600;
  color: #9a9a9a;
  cursor: pointer;
  white-space: nowrap;
}

.temp2Orders_tab.temp2Orders_active {
  border-bottom: 3px solid #ffb951;
  color: black;
}

.temp2Orders_filter_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.temp2Orders_filter_bar select {
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
}

.temp2Orders_search_box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.temp2Orders_search_box input {
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #ccc;
  width: 220px;
  font-size: 14px;
}

.temp2Orders_search_box button {
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
}

.temp2Orders_tab_content {
  display: none;
}

.temp2Orders_tab_content.temp2Orders_active {
  display: block;
  animation: temp2Orders_fadeIn 0.3s ease;
}

.temp2Orders_no_orders {
  text-align: center;
  margin-top: 60px;
  color: #333;
  font-size: 15px;
}

.temp2Orders_no_orders span {
  font-weight: bold;
}

.temp2Orders_no_orders a {
  color: #0073bb;
  text-decoration: none;
}

.temp2Orders_no_orders a:hover {
  text-decoration: underline;
}

.temp2Orders_dropdown {
  position: relative;
  display: inline-block;
  width: 180px;
  cursor: pointer;
}

.temp2Orders_dropdown_selected {
  background-color: #fff;
  border: 1px solid #ffb951;
  border-radius: 25px;
  padding: 8px 33px 8px 18px;
  position: relative;
  transition: all 0.3s ease;
  color: #000;
  font-size: 14px;
}

.temp2Orders_dropdown_selected::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transition: transform 0.2s ease;
}

.temp2Orders_dropdown.active .temp2Orders_dropdown_selected::after {
  transform: translateY(-50%) rotate(-135deg);
}

.temp2Orders_dropdown_list {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  display: none;
  z-index: 100;
}

.temp2Orders_dropdown.active .temp2Orders_dropdown_list {
  display: block;
  animation: fadeIn 0.2s ease;
}

.temp2Orders_dropdown_list li {
  padding: 10px 16px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  border-radius: 5px;
}

.temp2Orders_dropdown_list li:hover {
  background: #dddddd;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* REVIEW MODAL */
.temp2Orders_review_modal {
  border-radius: 14px;
}

.temp2Orders_review_img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

/* STARS */
.temp2Orders_review_stars .stars i {
  font-size: 22px;
  color: #ccc;
  cursor: pointer;
  margin-right: 5px;
  transition: 0.2s;
}

.temp2Orders_review_stars .stars i.active {
  color: #ffb400;
}

/* Remove blue outline */
.temp2Orders_review_modal input:focus,
.temp2Orders_review_modal textarea:focus,
.temp2Orders_review_modal button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.min-input input,
.min-input textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  outline: none;
  background: #fff;
  transition: border-color 0.2s ease;
}

.min-input textarea {
  resize: none;
}

/* Focus — very subtle */
.min-input input:focus,
.min-input textarea:focus {
  border-color: #999;
}

/* Placeholder */
.min-input input::placeholder,
.min-input textarea::placeholder {
  color: #aaa;
}

.cancel_modal {
  border-radius: 16px;
}

.cancel_info {
  background: #f6f6f6;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
}

.utility-btn {
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
}

/* ==============================order tab================= */
.order_card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 15px;
}

.order_top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.order_top small {
  color: #555;
  display: block;
  font-size: 12px;
}

.order_item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
}

.order_item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.order_info h4 {
  margin: 0;
  font-size: 14px;
  /* color: #007185; */
}

.order_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.order_actions button {
  border: none;
  /* background: #fff; */
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.2s;
}

#temp2Orders_orders button:hover {
  background-color: black;
  color: white;
}

.buyagain_actions button:hover {
  background-color: black;
  color: white;
}

/* .order_bottom {
            padding-top: 10px;
            margin-top: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        } */

.payment_info {
  font-size: 13px;
  color: #444;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  width: 100%;
  justify-content: space-between;
}

.payment_info strong {
  font-weight: 600;
  color: #000;
}

.invoice_link button {
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  cursor: pointer;
}

/* .invoice_link:hover {
            text-decoration: underline;
        } */

/* .order_actions button:hover {
  background: #f3e00a;
  color: #000;
}
 */

/* Animation */
@keyframes temp2Orders_fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------------- Buy Again Section ---------------- */
.temp2Orders_buyagain_container {
  padding: 20px 0;
}

.temp2Orders_buyagain_heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.buyagain_card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  height: 100%;
}

.buyagain_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.buyagain_card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.buyagain_info {
  padding: 12px;
}

.buyagain_info h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
}

.buyagain_info p {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

.buyagain_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.buyagain_actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s ease;
}

/* ---------------- Not Dispatched Section ---------------- */
.temp2Orders_notdispatched_container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
}

.temp2Orders_notdispatched_box {
  background: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  max-width: 500px;
}

.notdispatched_icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  opacity: 0.9;
}

.temp2Orders_notdispatched_box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.temp2Orders_notdispatched_box p {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.temp2Orders_notdispatched_btn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.temp2Orders_notdispatched_btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.track_modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  /* left: 50; */
  left: 0;
  top: 0;
  transform: translate(0%, 50%);
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.4); */
  z-index: 1000;
}

.track_modal_content {
  background: #fff;
  width: 90%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 25px 30px;
  animation: fadeIn 0.25s ease;
}

.track_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.track_header h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.track_close {
  font-size: 20px;
  cursor: pointer;
  color: #555;
}

.track_id {
  margin: 10px 0 20px;
  font-size: 13px;
  color: #666;
}

.track_timeline {
  position: relative;
}

.track_step {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-bottom: 18px;
}

.track_icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #bbb;
  margin-right: 10px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.track_line {
  width: 2px;
  height: 54px;
  background: #ddd;
  margin: 0 6px;
  position: absolute;
  left: 0;
}

.track_step.completed .track_icon {
  background: #05a357;
  border-color: #05a357;
}

.track_line.completed {
  background: #05a357;
  /* border-color: #05a357; */
}

.track_step.active .track_icon {
  background: #fff;
  border: 2px solid #05a357;
}

.track_text h4 {
  font-size: 14px;
  margin: 0;
  color: #222;
}

.track_text p {
  font-size: 12px;
  color: #777;
  margin: 2px 0 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----------view ordwe MODAL ---------- */
.view_modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
}

.view_close {
  font-size: 25px;
}

.modal_view {
  max-width: 603px;
  width: 100%;
}

/* 🧾 Order Summary Styling */
.order_summary_item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  color: #333;
}

.order_summary_item span {
  font-weight: 600;
}

.order_summary_total {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid #ddd;
  font-weight: bold;
  color: #000;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile fix */
@media (max-width: 600px) {
  .temp2Orders_buyagain_grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 768px) {
  .temp2Orders_filter_bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .temp2Orders_search_box input {
    width: 100%;
  }

  .temp2Orders_search_box button {
    width: 100%;
  }

  .order_top_details {
    margin-bottom: 0.5rem;
  }
  .my-account-page {
    padding: 0;
  }
}

/* /* ===============profile.html *=========/ */

.account-container {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
}

.account-container h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.account-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.2s ease-in-out;
  border: 1px solid #e5e5e5;
}

.account-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.account-card i {
  font-size: 28px;
  color: #0073bb;
  margin-right: 20px;
}

.account-card h4 {
  margin: 5px 0;
  font-size: 18px;
  color: #111;
  font-weight: normal;
}

.account-card p {
  margin: 3px 0 0;
  color: #555;
  font-size: 14px;
}

/* ✅ Round icon background */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
}

/* ✅ PNG icon inside circle */
.icon-circle img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .account-card {
    flex-direction: column;
    text-align: center;
  }

  .account-card i {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .icon-circle {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* -----------customer service profilehtml---------*/

/* HEADER */
.cs-header {
  color: #000000;
  padding: 70px;
}

.cs-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cs-header p {
  font-size: 16px;
  opacity: 0.95;
  max-width: 900px;
}

/* CONTAINER */
.cs-container {
  max-width: 1200px;
  margin: -30px auto 50px;
  padding: 0 20px;
}

/* GRID */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

/* CARD */
.cs-card {
  background: #fff;
  border-radius: 10px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.cs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.cs-card:active {
  transform: scale(0.97);
}

/* ICON */
.cs-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  flex-shrink: 0;
}

/* TEXT */
.cs-card h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #111;
}

.cs-card p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #555;
}

@media (max-width: 600px) {
  .cs-header h1 {
    font-size: 26px;
  }
}

/* -----------coupon profile.html---------*/

/* Container */
.coupon-container {
  max-width: 900px;
  margin: 60px auto;
}

/* Card */
.coupon-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.coupon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Left */
.coupon-left h5 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #111;
}

.coupon-left p {
  margin: 6px 0;
  font-size: 13px;
  color: #666;
}

/* Coupon Code */
.coupon-code {
  display: inline-block;
  background: #f1f3f6;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Right Button */
.coupon-right button {
  border-radius: 999px;
  padding: 6px 22px;
  font-size: 14px;
  transition: all 0.25s ease;
}

.coupon-right button:hover {
  background: #111;
  color: #fff;
}

/* Expired */
.coupon-card.expired {
  opacity: 0.45;
  filter: grayscale(1);
  pointer-events: none;
}

/* Mobile */
@media (max-width: 576px) {
  .coupon-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .coupon-right {
    width: 100%;
    text-align: right;
  }
}

/* ============login-security.html============= */

.security-wrapper {
  max-width: 850px;
  margin: 40px auto;
  padding: 0 15px;
}

.security-title {
  font-weight: 700;
  margin-bottom: 25px;
}

.security-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
}

.security-card:hover {
  transform: translateY(-2px);
}

.security-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.security-info h6 {
  font-weight: 600;
  margin-bottom: 4px;
}

.security-info p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 0;
}

.edit-link {
  color: #007bff;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.edit-link:hover {
  text-decoration: underline;
}

.edit-box {
  margin-top: 18px;
  max-width: 420px;

  /* animation setup */
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;

  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* ACTIVE STATE */
.edit-box.active {
  max-height: 500px; /* enough to fit content */
  opacity: 1;
  transform: translateY(0);
}

.edit-box input {
  border-radius: 0;
  height: 44px;
  border: none;
  border-bottom: 1px solid #d4d5d6;
  font-size: 0.8rem;
}
.edit-box input:focus {
  border-bottom: 1px solid #000000;
}
.save-btn {
  border-radius: 10px;
  padding: 8px 22px;
  font-size: 14px;
}

@media (max-width: 576px) {
  .security-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.form-control:focus {
  border-color: #ced4da; /* normal border */
  outline: none !important;
  box-shadow: none !important;
}

.save-btn {
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

.save-btn:active {
  transform: scale(0.97);
  opacity: 0.9;
  filter: brightness(0.95);
}
/* address card */
.Address_card {
  border-bottom: 1px solid #ccc;
  padding: 20px;
}
.Address_card .btn {
  width: 50%;
}

.create {
  background-color: #f4f4f4;
}

.address-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow-y: auto;

  padding: 20px;
}

.address-modal {
  background: #fff;
  width: 520px;
  max-width: 95%;
  border-radius: 14px;
  padding: 30px;
  position: relative;
  animation: popIn 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.address-modal {
  -webkit-overflow-scrolling: touch;
}

@keyframes popIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.address-modal .close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}
.skip-address {
  font-size: 14px;
  font-weight: 600;
  /* color:#fc2779; */
  cursor: pointer;
}

.skip-address:hover {
  text-decoration: underline;
}

/* articles */

/* article card */
/* Header */
.Articlehelp-header {
  /* background:#000; */
  color: #000000;
  padding: 50px 20px;
  border-radius: 0 0 30px 30px;
  text-align: center;
}

/* Card */
.article-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  border: 1px solid #eee;
}

.article-left {
  display: flex;
  gap: 14px;
}

.article-icon {
  width: 42px;
  height: 42px;
  background: #eee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-text {
  font-weight: 600;
}

/* Help text */
.help-desc {
  display: none;
  font-size: 14px;
  color: #666;
  margin-top: 6px;
  line-height: 1.5;
}

.help-desc.show {
  display: block;
}
.viewOrderBtn {
  background: #f0f0f0;
  border: none;

  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.2s;
}
.formContainer_container {
  min-height: 500px !important;
}
.formContainer_input::placeholder {
  color: #7d7d7d !important; /* your color */
  opacity: 1; /* important for full color visibility */
}
.view_modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;

  align-items: center;
  justify-content: center;
}

.modal_view {
  background: white;
  /* width: 80%;
    max-width: 800px; */
  border-radius: 8px;
  padding: 20px;
}

/* -----------payment profilehtml---------*/

.Profile_payment-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 301px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.Profile_payment-card {
  background: #fff;
  padding: 16px;
  border-left: 5px solid #f4a641;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.Profile_icon-box {
  width: 50px;
  height: 50px;
  border: 2px dashed #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.Profile_add-link {
  color: #2a66c9;
  font-weight: 600;
}

.Profile_card-icons img {
  height: 32px;
  width: 40px;
  margin-left: 12px;
}

.cursor-pointer {
  cursor: pointer;
}
.Profile_card-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.Profile_card-modal {
  background: #fff;
  width: 420px;
  max-width: 90%;
  border-radius: 14px;
  padding: 30px;
  position: relative;
  animation: popup 0.25s ease;
}

@keyframes popup {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.Profile_close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: none;
  font-size: 26px;
  cursor: pointer;
}
