#loading-icon-domain {
  display: none;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}
.SinglePrice_cl h1
{
 
  color: #FFF;
  font-size: 40px;
  font-weight: 400;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.domain-container {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
/* .domain-container .domain-content-search{
  margin-bottom: 20px;
  border:1px solid red;
  padding:10px;
} */

.domain-content-search {
  font-family: "Open Sans", sans-serif;
  display: flex;
  /* align-items: center; */
  gap: 10px;
  max-width: 800px;
   
   margin-bottom: 27px;
  margin: 20px auto;
 
  
}

/* Input box with icon */
.search-box {
  position: relative;
  width: 70%; /* ✅ Input takes 70% */
}

.search-box i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #2E4360B2;
  font-size: 20px;
}

.search-box input {
  width: 100%;
  padding: 8px 8px 8px 46px;
  border: 1px solid #2E4360B2;
  border-radius: 6px;
  font-size: 20px;
  outline: none;
}

/* Dropdown + Button share 30% */
.filter-select {
  width: 15%;
  padding: 8px;
  font-size: 20px;
  border: 1px solid #2E4360B2;
  border-radius: 6px;
}

.search-btn {
  width: 15%;
  background: #2C3C94;
  color: #fff;
  padding: 8px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  height: 55px;
  font-size: 20px;
  text-align: center;
  transition: background 0.3s;
}

.search-btn:hover {
  background: #005bb5;
}

/* Domain table */

.table-container {
  font-family: "Open Sans", sans-serif;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #2C3C94;
  border-radius: 6px;
  scrollbar-width: none;
}

.table-container::-webkit-scrollbar {
  display: none;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 700px; /* force scroll only when necessary */
}

th, td {
  padding: 8px 10px;
  text-align: center;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 400;
}

th {
  border-bottom: 1px solid #2C3C94;
  font-weight: 600;
  font-size: 20px;
  background: #f9f9f9;
  font-weight: 600;
}

/* Row-wise alternate colors */
tbody tr:nth-child(odd) {
  background-color: #94D4FF33; /* light blue */
}

tbody tr:nth-child(even) {
  background-color: #ffffff; /* white */
}

/* Hover effect (optional) */
tbody tr:hover {
  background-color: #e6f3ff; /* slightly darker on hover */
}
.transfer_register
{
  text-decoration: none;
  cursor: pointer;
}
/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  table {
    min-width: 600px;
  }
  th, td {
    padding: 6px 8px;
    font-size: 14px;
  }
}


/* 📱 Mobile Responsive (Vertical layout) */
@media (max-width: 768px) {
  .domain-content-search {
    flex-direction: column;
    align-items: stretch;
    margin: 20px auto;
  }

  .search-box,
  .filter-select,
  .search-btn {
    width: 100%;
  }
  .tld-buttons button {
  /* border:2px solid red; */
  height: 37px;
  }
}
/* Transfer table css */
.outer-cotainer
{
  /* border:1px solid #2C3C94; */
  /* border-radius:12px; */
  /*background-color: red;*/
}

.domain-table-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  background: #E8F3FF; /* light blue background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-family: "Open Sans", sans-serif;
  color: #2C3C94;
}

.domain-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto; /* ✅ columns resize automatically */
}

.domain-table th {
  background-color: #B3DAFF;
  font-weight: 700;
  color: #2C3C94;
  text-align: center;
  padding: 14px 18px;
  font-size: 18px;
  border-right: 1px solid #BBC2CC;
  white-space: nowrap; /* keep headings in one line */
}

.domain-table td {
  padding: 12px 18px;
  font-size: 16px;
  /* color: #333; */
  border: 1px solid #BBC2CC;
  border-bottom: none;
  vertical-align: top;
  word-wrap: break-word; /* ✅ long text wraps */
  word-break: break-word;
}

.domain-table td.domain_name {
  color: #2C3C94;
  font-weight: 700;
  font-size: 24px;

}

.domain-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.domain-table tbody tr:nth-child(even) {
  background-color: #f7fbff;
}

.domain-table tbody tr:hover {
  background-color: #dceeff;
}

.renew-text {
  /* color: #666; */
  font-size: 14px;
}
.domain-table td span.transfer {
  font-size: 20px;
  font-weight: 600;
  
}
.domain-table td div.price-info
{
    display: flex;
    flex-direction: column;
    /* justify-content: flex-start; */
    /* width: 172px; */
    align-items: center;

}
/* ✅ Responsive adjustments (auto adjust only) */
@media (max-width: 768px) {
  .domain-table-wrapper {
    width: 95%;
  }

  .domain-table {
    table-layout: auto; /* still flexible */
    width: 100%;
  }

  .domain-table th,
  .domain-table td {
    padding: 10px;
    font-size: 14px;
    white-space: normal; /* ✅ allow wrapping */
    text-align: left;
  }

  .domain-table th:nth-child(1),
  .domain-table td:nth-child(1) {
    width: 20%; /* domain column smaller */
  }

  .domain-table th:nth-child(2),
  .domain-table td:nth-child(2) {
    width: 60%; /* price column wider */
  }

  .domain-table td.domain_name {

  font-size: 20px;

}
.domain-table td div.price-info
{
    align-items: flex-start;
}
}
