body {
  background: rgba(242, 242, 249, 1);
  font-family: Gilroy;
}

@font-face {
  font-family: 'remixicon';
  src: url('../font/remixicon.woff2') format('woff2'), url('../font/remixicon.woff') format('woff'),
    url('../font/remixicon.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

[class^='ri-'],
[class*=' ri-'] {
  font-family: 'remixicon' !important;
  font-weight: 400 !important;
  font-style: normal;
  line-height: 1;
  display: inline-block;
}

.odw-domain-list {
  background: #fff;
  border-radius: 12px;
}

.odw-domain-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 25px 30px;
}

.odw-tabs {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.odw-tabs li {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.odw-tabs li:not(:last-child) {
  margin-right: 88px;
}

.odw-tabs li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -73px;
  width: 50px;
  height: 1px;
  background: rgba(109, 119, 146, 0.15);
}

.odw-tabs li a span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  background: rgba(109, 119, 146, 0.15);
  color: rgba(109, 119, 146, 1);
  transition: all 0.2s ease-in-out;
}

.odw-tabs li a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  color: rgba(109, 119, 146, 1);
  transition: all 0.3s ease-in-out;
}

.odw-tabs li a:hover {
  color: rgba(40, 44, 63, 1);
}

.odw-tabs li a:hover span {
  background: linear-gradient(153.43deg, rgba(242, 113, 42, 1) 0%, rgba(250, 167, 51, 1) 100%);
  color: #fff;
}

.odw-tabs li.active a {
  color: rgba(40, 44, 63, 1);
}

.odw-tabs li.active span {
  background: linear-gradient(153.43deg, rgba(242, 113, 42, 1) 0%, rgba(250, 167, 51, 1) 100%);

  color: #fff;
}

.odw-search {
  position: relative;
  width: 200px;
}

.odw-search input {
  width: 100%;
  padding: 8px 8px 8px 37px;
  border-radius: 30px;
  background: rgba(109, 119, 146, 0.05);
  border: 1px solid rgba(109, 119, 146, 0.1);
  font-size: 13px;
  font-weight: 400;
  color: rgba(109, 119, 146, 1);
  transition: all 0.3s ease-in-out;
}

.odw-search input:focus {
  outline: none;
  box-shadow: none;
  border-color: rgba(242, 113, 42, 1);
}

.odw-search i {
  font-size: 18px;
  color: rgba(109, 119, 146, 1);
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}

.odw-table {
  width: 100%;
}

.odw-table th {
  font-size: 16px;
  line-height: 19px;
  font-weight: 400 !important;
  color: rgba(109, 119, 146, 1);
  border: none !important;
  padding: 15px 10px !important;
  text-align: center !important;
}

.odw-table th:nth-child(2) {
  text-align: left !important;
  padding-left: 0 !important;
}

.odw-table th:first-child {
  padding-left: 30px !important;
  text-align: left !important;
}

.odw-table thead {
  background: rgba(109, 119, 146, 0.05);
  border: 1px solid rgba(109, 119, 146, 0.1);
  border-right: 0;
  border-left: 0;
}

.odw-table td {
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  color: rgba(40, 44, 63, 1);
  text-align: center !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.odw-domain {
  display: flex;
  align-items: center;
  gap: 15px;
}

.odw-table td .btn {
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  background: rgba(109, 119, 146, 0.1);
  color: rgba(109, 119, 146, 1);
  border: none;
  border-radius: 6px;
  width: 100%;
  padding: 6px;
  min-width: 92px;
  max-width: 92px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 0;
}

.odw-table td .btn:hover {
  background: #eaeaf1;
}

.odw-table td .btn.btn-warning {
  background: linear-gradient(to right, #f2712a, #faa733) !important;
  color: #fff;
}

.odw-table td .btn.btn-warning::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #f2712a, #faa733) !important;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.odw-table td .btn.btn-warning:hover::before {
  opacity: 1;
}

.odw-table td .btn.btn-warning.w-100 {
  max-width: 190px;
}

.odw-table td:first-child {
  padding-left: 30px;
}

.odw-table td:last-child {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-right: 30px;
}

.odw-table.offer td:last-child {
  justify-content: flex-end;
}

.odw-table td:nth-child(2) {
  text-align: left !important;
}

table.dataTable tbody tr {
  transition: all 0.3s ease-in-out;
}

table.dataTable tbody tr:hover {
  background: rgba(109, 119, 146, 0.05);
}

.odw-pagination {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 20px 30px;
}

.odw-pagination .odw-page-btn {
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  border-radius: 6px;
  border: none;
  background: rgba(109, 119, 146, 0.1);
  color: rgba(109, 119, 146, 1);
  transition: all 0.3s ease-in-out;
}

.odw-pagination .odw-page-btn.active {
  background: rgba(242, 113, 42, 0.1);
  color: rgba(242, 113, 42, 1);
}

.odw-pagination .odw-page-btn:hover {
  background: rgba(242, 113, 42, 0.1);
  color: rgba(242, 113, 42, 1);
}

.odw-bid-form {
  display: flex;
  align-items: center;
  gap: 6px;
}

.odw-bid-input {
  width: 80px;
  height: 32px;
  padding: 4px 8px;
  border-radius: 6px;
  border: none;
  background: rgba(109, 119, 146, 0.1);
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  color: rgba(40, 44, 63, 1);
  min-width: 92px;
  text-align: center;
}

.odw-bid-input::-webkit-outer-spin-button,
.odw-bid-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.odw-bid-input[type='number'] {
  -moz-appearance: textfield;
}

.odw-bid-input:focus {
  outline: none;
  border-color: rgba(242, 113, 42, 0.6);
}

.odw-fav i {
  font-size: 20px;
  color: rgba(109, 119, 146, 1);
  cursor: pointer;
  margin-top: 3px;
}

.odw-fav.active i {
  color: #ff7a18;
}

.odw-table tbody tr {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.odw-table tbody tr:hover {
  background: rgba(109, 119, 146, 0.05);
}

.odw-table tbody tr::after {
  content: '';
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 1px;
  background: rgba(109, 119, 146, 0.1);
}

.odw-table tbody tr:last-child::after {
  display: none;
}

.odw-empty-state {
  padding: 100px 20px;
  text-align: center;
}

.odw-empty-content i {
  font-size: 50px;
  color: rgba(109, 119, 146, 1);
  margin-bottom: 10px;
}

.odw-empty-content h4 {
  font-size: 19px;
  line-height: 19px;
  font-weight: 400;
  color: rgba(40, 44, 63, 1);
  margin-bottom: 10px;
}

.odw-empty-content p {
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  color: rgba(109, 119, 146, 1);
}

.odw-empty-content .btn {
  background: linear-gradient(92.93deg, rgba(242, 113, 42, 1) 0%, rgba(250, 167, 51, 1) 100%);
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  color: #fff;
  padding: 15px 44px;
  border-radius: 6px;
  position: relative;
  z-index: 0;
}

.odw-empty-content .btn:focus {
  color: #fff;
}

.odw-empty-content .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #f2712a, #faa733) !important;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.odw-empty-content .btn:hover::before {
  opacity: 1;
}

.odw-deposit-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.odw-deposit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.odw-deposit-icon i {
  font-size: 50px;
  color: rgba(109, 119, 146, 1);
}

.odw-deposit-text {
  font-size: 19px;
  line-height: 19px;
  font-weight: 400;
  color: rgba(40, 44, 63, 1);
  margin-bottom: 10px;
}

.odw-deposit-text strong {
  font-weight: 600;
}

.odw-deposit-subtext {
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  color: rgba(109, 119, 146, 1);
  margin-bottom: 30px;
}

.mydomains th:nth-child(2) {
  text-align: center !important;
}

.odw-deposit-actions {
  display: flex;
  gap: 10px;
}

.odw-deposit-actions .btn {
  min-width: 200px;
  height: 50px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  color: #fff;
  padding: 15px;
  background: linear-gradient(92.93deg, rgba(242, 113, 42, 1) 0%, rgba(250, 167, 51, 1) 100%);
  z-index: 0;
  position: relative;
}

.odw-deposit-actions .btn.btn-warning::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #f2712a, #faa733) !important;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.odw-deposit-actions .btn.btn-warning:hover::before {
  opacity: 1;
}

.odw-deposit-actions .btn:focus {
  color: #fff;
}

.odw-deposit-actions .btn.btn-light {
  min-width: 105px;
  background: rgba(109, 119, 146, 0.1);
  color: rgba(109, 119, 146, 1);
}

.odw-table.mydomains th:nth-child(1),
.odw-table.mydomains td:nth-child(1) {
  width: 60%;
  text-align: left;
}

.odw-table.mydomains th:last-child {
  padding-right: 44px !important;
}

.odw-table.mydomains th:nth-child(2),
.odw-table.mydomains td:nth-child(2) {
  width: 28%;
  text-align: center !important;
}

.odw-table.mydomains th:nth-child(3),
.odw-table.mydomains td:nth-child(3) {
  width: 100%;
}

.odw-table.mydomains td:nth-child(3) {
  display: flex;
  justify-content: center;
  align-items: center;
}

.odw-status {
  display: inline-flex;
  padding: 6px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  width: 100%;
  width: 125px;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}

.odw-status.inactive {
  background: rgba(109, 119, 146, 0.1);
  color: rgba(109, 119, 146, 1);
}

.odw-status.active {
  background: rgba(242, 113, 42, 0.1);
  color: rgba(242, 113, 42, 1);
}

.odw-table tbody tr:hover .odw-status.active {
  background: rgba(242, 113, 42, 0.18);
}

.odw-table tbody tr:hover .odw-status.inactive {
  background: rgba(109, 119, 146, 0.18);
}

.odw-btn {
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  color: #fff;
  padding: 6px;
  border-radius: 6px;
  border: none;
  min-width: 125px;
  display: inline-flex;
  justify-content: center;
  z-index: 0;
  position: relative;
}

.odw-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #f2712a, #faa733) !important;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.odw-btn:hover::before {
  opacity: 1;
}

.odw-btn-sell {
  background: linear-gradient(92.93deg, rgba(242, 113, 42, 1) 0%, rgba(250, 167, 51, 1) 100%);
}

.odw-btn-remove {
  background: rgba(109, 119, 146, 1);
}

.odw-form-wrapper {
  padding: 25px 30px;
  border-top: 1px solid rgba(109, 119, 146, 0.1);
}

.odw-form-group {
  border-bottom: 1px solid rgba(109, 119, 146, 0.1);
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.odw-form-group label {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: rgba(109, 119, 146, 1);
  margin-bottom: 10px;
}

.odw-input {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: 1px solid rgba(109, 119, 146, 0.15);
  padding: 0 15px;
  font-size: 15px;
}

.odw-input:focus {
  outline: none;
  border-color: rgba(242, 113, 42, 1);
}

.odw-form-actions {
  margin-top: 30px;
}

.odw-btn-update {
  background: linear-gradient(92.93deg, rgba(242, 113, 42, 1) 0%, rgba(250, 167, 51, 1) 100%);
  color: #fff;
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  padding: 20px;
  border-radius: 6px;
}

.odw-modal {
  border-radius: 12px;
  overflow: visible !important;
  border: none;
}

.odw-modal-header {
  background: linear-gradient(92.93deg, rgba(242, 113, 42, 1) 0%, rgba(250, 167, 51, 1) 100%);
  color: #fff;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px 12px 0 0;
}

.odw-modal-header .flex-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.odw-modal-header strong {
  font-size: 17px;
  font-weight: 400;
}

.odw-modal-header strong b {
  font-weight: 500;
}

.odw-modal-header .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  background-image: none !important;
  box-shadow: none;
  opacity: 1;
  padding: 0;
}

.odw-modal-header .btn-close:focus {
  outline: none;
  box-shadow: none;
}

.odw-modal-body {
  padding: 25px 25px 0 25px;
  overflow: visible !important;
}

.odw-modal-footer {
  padding: 0 25px 25px 25px;
}

.odw-label {
  font-size: 15px;
  font-weight: 400;
  color: rgba(109, 119, 146, 1);
  margin-bottom: 10px;
  display: block;
}

.odw-input {
  width: 100%;
  height: 55px;
  border-radius: 6px;
  border: 1px solid rgba(109, 119, 146, 0.1);
  padding: 0 18px;
  margin-bottom: 20px;
}

.odw-date {
  appearance: none;
  -webkit-appearance: none;
}

.odw-date::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
}

.odw-input-icon {
  position: relative;
}

.odw-input-icon i {
  position: absolute;
  right: 19px;
  top: 38%;
  transform: translateY(-50%);
  color: rgba(109, 119, 146, 1);
  font-size: 20px;
}

.odw-select {
  position: relative;
  margin-bottom: 20px;
}

.odw-native-select {
  display: none;
}

.odw-select-trigger {
  height: 55px;
  border-radius: 6px;
  border: 1px solid rgba(109, 119, 146, 0.1);
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  color: rgba(40, 44, 63, 1);
}

.odw-select-trigger i {
  font-size: 20px;
  color: rgba(109, 119, 146, 1);
}

.odw-select-options {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  z-index: 10;
  max-height: 240px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.odw-select-options::-webkit-scrollbar {
  width: 6px;
}

.odw-select-options::-webkit-scrollbar-track {
  background: rgba(109, 119, 146, 0.08);
  border-radius: 6px;
}

.odw-select-options::-webkit-scrollbar-thumb {
  background: rgba(242, 113, 42, 0.6);
  border-radius: 6px;
}

.odw-option {
  padding: 12px 15px;
  cursor: pointer;
}

.odw-option:hover {
  background: rgba(242, 113, 42, 0.1);
  color: #f2712a;
}

.odw-select.open .odw-select-options {
  display: block;
}

.auction-header .odw-btn-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #fff;
  padding: 7px 20px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(91.18deg, rgba(242, 113, 42, 1) 0%, rgba(250, 167, 51, 1) 100%);
}

.auction-header .odw-search {
  margin-left: auto;
  margin-right: 10px;
}

.auction-header .odw-btn-send i {
  font-size: 20px;
}

.odw-page-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(40, 44, 63, 1);
}

.odw-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.odw-btn-primary {
  background: linear-gradient(92.93deg, #f2712a 0%, #faa733 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.odw-status.pending {
  background: rgba(242, 113, 42, 0.1);
  color: rgba(242, 113, 42, 1);
}

.odw-icon-btn {
  width: 50px;
  padding: 0 15px;
  height: 30px;
  border-radius: 6px;
  font-size: 20px;
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(92.93deg, rgba(242, 113, 42, 1) 0%, rgba(250, 167, 51, 1) 100%);
  margin-left: auto;
}

.auction-table td:first-child {
  text-align: left !important;
}

.auction-table th:last-child {
  text-align: right !important;
  padding-right: 39px !important;
  width: 7%;
}

@media (max-width: 1199px) {
  .odw-domain-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .odw-search {
    width: 100%;
  }

  .odw-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .odw-table {
    min-width: 1100px;
  }

  .odw-table th,
  .odw-table td {
    padding: 14px 8px !important;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .odw-empty-state {
    padding: 40px 20px;
    text-align: center;
  }

  .odw-table {
    min-width: 100%;
  }

  .odw-table thead {
    display: none;
  }

  .odw-icon-btn {
    margin-left: 0;
  }

  .odw-domain-header {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .odw-search {
    width: 100%;
    order: 1;
  }

  .odw-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .odw-tabs::-webkit-scrollbar {
    display: none;
  }

  .odw-tabs li {
    flex: 0 0 auto;
    margin: 0 !important;
  }

  .odw-tabs li::after {
    display: none;
  }

  .odw-tabs li a {
    padding: 8px 14px;
    border-radius: 20px;
    background: rgba(109, 119, 146, 0.08);
    font-size: 14px;
    gap: 8px;
  }

  .odw-tabs li a span {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .odw-tabs li.active a {
    background: rgba(242, 113, 42, 0.15);
    color: rgba(242, 113, 42, 1);
  }

  .odw-table,
  .odw-table tbody {
    display: block;
    width: 100%;
  }

  .odw-table tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    padding: 16px;
    margin-bottom: 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
  }

  .odw-table tr:active {
    transform: scale(0.99);
  }

  .odw-table tbody tr::after {
    display: none;
  }

  .odw-table td {
    display: block;
    padding: 0 !important;
    border: none !important;
    text-align: left !important;
    font-size: 14px;
    line-height: 1.35;
  }

  .odw-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 12px;
    color: rgba(109, 119, 146, 1);
    margin-bottom: 2px;
  }

  .odw-table td.hide-empty {
    display: none !important;
  }

  .odw-table td[data-label='Alan Adı'] {
    grid-column: 1 / -1;
    padding-bottom: 12px !important;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(109, 119, 146, 0.1);
  }

  .odw-table td[data-label='Alan Adı']::before {
    display: none;
  }

  .odw-domain {
    font-size: 17px;
    font-weight: 600;
    gap: 10px;
  }

  .odw-table td[data-label='İşlem'] {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(109, 119, 146, 0.1);
  }

  .odw-table td[data-label='İşlem']::before {
    display: none;
  }

  .odw-bid-form {
    width: 100%;
    display: flex;
    gap: 8px;
  }

  .odw-table td[data-label='İşlem'] .odw-bid-input {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
  }

  .odw-table td[data-label='İşlem'] .odw-bid-input:focus {
    outline: none;
    border-color: rgba(242, 113, 42, 1);
    background: #fff;
  }

  .odw-table td[data-label='İşlem'] .btn {
    flex-shrink: 0;
    font-weight: 500;
    transition: all 0.2s;
    max-width: 110px;
  }

  .odw-table td[data-label='İşlem'] .btn:active {
    transform: scale(0.95);
  }

  .odw-table td[data-label='İşlem'] .btn.w-100 {
    width: 100%;
    padding: 9px;
    font-size: 16px;
    background: linear-gradient(135deg, rgba(242, 113, 42, 1) 0%, #ff8c42 100%);
    border: none;
    max-width: 100%;
  }

  .odw-table.mydomains th:nth-child(2),
  .odw-table.mydomains td:nth-child(2) {
    width: 100%;
    text-align: left !important;
  }

  .odw-table.mydomains td:nth-child(3) {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .odw-deposit-actions {
    flex-direction: column;
  }

  .odw-deposit-text {
    font-size: 16px;
  }

  .odw-deposit-subtext {
    font-size: 14px;
  }

  .odw-table.odw-table-simple,
  .odw-table.odw-table-simple tbody {
    display: block;
    width: 100%;
  }

  .odw-table.odw-table-simple tr {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
    padding: 16px 20px !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(109, 119, 146, 0.1) !important;
  }

  .odw-table.odw-table-simple tr:active {
    transform: none !important;
    background: rgba(242, 113, 42, 0.03) !important;
  }

  .odw-table.odw-table-simple td {
    display: block !important;
    padding: 0 !important;
    border: none !important;
    text-align: left !important;
  }

  .odw-table.odw-table-simple td[data-label='Alan Adı'] {
    grid-column: auto !important;
    padding-bottom: 0 !important;
    margin-bottom: 6px !important;
    border-bottom: none !important;
  }

  .odw-table.odw-table-simple td[data-label='Alan Adı']::before {
    display: none !important;
  }

  .odw-table.odw-table-simple .odw-domain {
    font-size: 16px !important;
    font-weight: 600 !important;
    gap: 0 !important;
  }

  .odw-table.odw-table-simple td[data-label='En Yüksek Teklif'] {
    font-size: 14px !important;
    color: rgba(109, 119, 146, 1) !important;
    font-weight: 500 !important;
  }

  .odw-table.odw-table-simple td[data-label='En Yüksek Teklif']::before {
    display: inline !important;
    margin-right: 4px !important;
    font-weight: 400 !important;
  }

  .odw-table.odw-table-mydomains tr {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto;
    gap: 0 !important;
    padding: 16px 20px !important;
    margin-bottom: 12px !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
  }

  .odw-table.odw-table-mydomains td[data-label='Alan Adı'] {
    grid-row: 1;
    padding-bottom: 12px !important;
    margin-bottom: 12px !important;
    border-bottom: 1px solid rgba(109, 119, 146, 0.1) !important;
    width: 100%;
  }

  .odw-table.odw-table-mydomains td[data-label='Alan Adı']::before {
    display: none !important;
  }

  .odw-table.odw-table-mydomains .odw-domain {
    font-size: 17px !important;
    font-weight: 600 !important;
  }

  .odw-table.odw-table-mydomains td[data-label='Satış Durumu'] {
    grid-row: 2;
    padding: 0 !important;
    margin-bottom: 12px !important;
  }

  .odw-table.odw-table-mydomains td[data-label='Satış Durumu']::before {
    display: block !important;
    font-size: 13px;
    color: rgba(109, 119, 146, 1);
    margin-bottom: 6px;
  }

  .odw-table.odw-table-mydomains .odw-status {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
  }

  .odw-table.odw-table-mydomains .odw-status.active {
    background: rgba(34, 197, 94, 0.1);
    color: rgb(34, 197, 94);
  }

  .odw-table.odw-table-mydomains .odw-status.inactive {
    background: rgba(109, 119, 146, 0.1);
    color: rgba(109, 119, 146, 1);
  }

  .odw-table.odw-table-mydomains td[data-label='İşlem'] {
    grid-row: 3;
    padding: 0 !important;
    border-top: 1px solid rgba(109, 119, 146, 0.1) !important;
    padding-top: 12px !important;
    margin-top: 0 !important;
  }

  .odw-table.odw-table-mydomains td[data-label='İşlem']::before {
    display: none !important;
  }

  .odw-table.odw-table-mydomains .odw-btn {
    width: 100%;
    padding: 9px 20px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
  }

  .odw-table.odw-table-mydomains .odw-btn-sell {
    background: linear-gradient(135deg, rgba(242, 113, 42, 1) 0%, #ff8c42 100%);
    color: #fff;
  }

  .odw-table.odw-table-mydomains .odw-btn-remove {
    background: rgba(109, 119, 146, 0.1);
    color: rgba(109, 119, 146, 1);
  }

  .odw-table.odw-table-mydomains .odw-btn:active {
    transform: scale(0.95);
  }

  .odw-modal {
    margin: 16px;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 32px);
  }

  .odw-modal-header {
    padding: 16px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .odw-modal-header .flex-item {
    flex: 1;
    min-width: 0;
  }

  .odw-modal-header .flex-item strong {
    font-size: 15px;
    line-height: 1.4;
    word-break: break-word;
  }

  .odw-modal-header .flex-item i {
    font-size: 20px;
    flex-shrink: 0;
  }

  .modal-dialog {
    margin: 16px;
    max-height: calc(100vh - 32px);
  }

  .odw-modal-body {
    padding: 20px;
    padding-bottom: 0;
    overflow-y: auto;
    flex: 1;
    max-height: calc(100vh - 32px);
    -webkit-overflow-scrolling: touch;
  }

  .odw-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    display: block;
  }

  .odw-select,
  .odw-input,
  .odw-input-icon {
    margin-bottom: 16px;
  }

  .odw-select-trigger {
    padding: 12px 14px;
    font-size: 15px;
  }

  .odw-input,
  .odw-date {
    padding: 12px 14px;
    font-size: 15px;
    width: 100%;
    border: 2px solid #e8eaed;
    border-radius: 10px;
    transition: all 0.2s;
  }

  .odw-input:focus,
  .odw-date:focus {
    outline: none;
    border-color: rgba(242, 113, 42, 1);
  }

  .odw-input-icon i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(109, 119, 146, 1);
    font-size: 18px;
    pointer-events: none;
  }

  .odw-modal-footer {
    padding: 16px 20px;
  }

  .odw-modal-footer .odw-btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(242, 113, 42, 1) 0%, #ff8c42 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
  }

  .odw-modal-footer .odw-btn-primary:active {
    transform: scale(0.98);
  }

  .odw-table.odw-table-auction tr {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 14px !important;
    padding: 16px !important;
    margin-bottom: 12px !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
  }

  .odw-table.odw-table-auction td[data-label='No'] {
    display: none !important;
  }

  .odw-table.odw-table-auction td[data-label='Alan Adı'] {
    grid-column: 1 / -1 !important;
    padding-bottom: 12px !important;
    margin-bottom: 8px !important;
    border-bottom: 1px solid rgba(109, 119, 146, 0.1) !important;
    font-size: 17px !important;
    font-weight: 600 !important;
  }

  .odw-table.odw-table-auction td[data-label='Alan Adı']::before {
    display: none !important;
  }

  .odw-table.odw-table-auction td[data-label='Alış Fiyatı'],
  .odw-table.odw-table-auction td[data-label='Minimum Teklif'],
  .odw-table.odw-table-auction td[data-label='Yaş'],
  .odw-table.odw-table-auction td[data-label='Not'] {
    font-size: 14px !important;
  }

  .odw-table.odw-table-auction td[data-label='Not'] {
    grid-column: 1 / -1 !important;
    background: rgba(109, 119, 146, 0.05) !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    color: rgba(109, 119, 146, 1) !important;
    margin-top: 4px !important;
  }

  .odw-table.odw-table-auction td[data-label='Not']::before {
    font-weight: 600 !important;
    color: rgba(109, 119, 146, 1) !important;
  }

  .odw-table.odw-table-auction td[data-label='Durum'] {
    grid-column: 1 / 2 !important;
    padding: 0 !important;
    margin-top: 8px !important;
    border-top: 1px solid rgba(109, 119, 146, 0.1) !important;
    padding-top: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .odw-table.odw-table-auction td[data-label='Durum']::before {
    display: block !important;
    font-size: 11px !important;
    color: rgba(109, 119, 146, 1) !important;
    margin-bottom: 6px !important;
    font-weight: 500 !important;
  }

  .odw-table.odw-table-auction .odw-status {
    display: inline-flex !important;
    align-items: center;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
    margin-left: 0;
  }

  .odw-table.odw-table-auction .odw-status.pending {
    background: rgba(251, 191, 36, 0.1);
    color: rgb(251, 191, 36);
  }

  .odw-table.odw-table-auction .odw-status.active {
    background: rgba(34, 197, 94, 0.1);
    color: rgb(34, 197, 94);
  }

  .odw-table.odw-table-auction .odw-status.rejected {
    background: rgba(239, 68, 68, 0.1);
    color: rgb(239, 68, 68);
  }

  .odw-table.odw-table-auction td[data-label='İşlem'] {
    grid-column: 2 / 3 !important;
    padding: 0 !important;
    border-top: 1px solid rgba(109, 119, 146, 0.1) !important;
    padding-top: 12px !important;
    margin-top: 8px !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }

  .odw-table.odw-table-auction td[data-label='İşlem']::before {
    display: none !important;
  }

  .odw-table.odw-table-auction .odw-icon-btn {
    width: 40px;
    height: 40px;

    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
  }

  .odw-table.odw-table-auction .odw-icon-btn:active {
    transform: scale(0.9);
    background: rgba(239, 68, 68, 0.2);
  }
}
/* Extracted from domainmarket.tpl */


.marka-tescil-hero {
   background: linear-gradient(135deg, #f2722a 0%, #faa733 100%);
   padding: 80px 0 60px;
   color: #fff;
   text-align: center;
}
.marka-tescil-hero h1 {
   font-size: 42px;
   font-weight: 700;
   margin-bottom: 20px;
}
.marka-tescil-hero p {
   font-size: 18px;
   opacity: 0.9;
   margin-bottom: 40px;
}
.marka-sorgulama-form {
   background: transparent;
   border-radius: 0;
   padding: 0;
   box-shadow: none;
   margin-top: 30px;
   position: relative;
   z-index: 10;
   border: none;
}
.marka-adi-card {
   background: #fff;
   border-radius: 12px;
   padding: 32px;
   margin-bottom: 24px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.08);
   border: 1px solid #e5e7eb;
}
.marka-adi-card h2 {
   font-size: 20px;
   font-weight: 700;
   color: #faa733;
   margin-bottom: 16px;
}
.marka-adi-input {
   width: 100%;
   padding: 14px 18px;
   border: 1px solid #d1d5db;
   border-radius: 8px;
   font-size: 16px;
   background: #fff;
   color: #faa733;
}
.marka-adi-input:focus {
   outline: none;
   border-color: #f2722a;
   box-shadow: 0 0 0 3px rgba(68,167,223,0.1);
}
.marka-adi-input::placeholder {
   color: #9ca3af;
}
.form-control.is-invalid {
   border-color: #dc3545;
   box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
#markaAdiError, #sinifSecimiError {
   color: #dc3545;
   font-size: 13px;
   margin-top: 5px;
   display: block;
}
.btn-sorgula {
   background: #f2722a;
   color: #fff;
   padding: 14px 32px;
   border: none;
   border-radius: 4px;
   font-size: 14px;
   font-weight: 600;
   cursor: pointer;
   width: 100%;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   margin-top: 24px;
}
.btn-sorgula:hover {
   background: #faa733;
}
.btn-sorgula i {
   margin-right: 8px;
}
.marka-siniflari {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
   gap: 15px;
   margin-top: 15px;
}
.marka-sinif-item {
   border: 2px solid #e0e0e0;
   border-radius: 8px;
   padding: 15px;
   cursor: pointer;
   transition: all 0.3s;
   text-align: center;
}
.marka-sinif-item:hover {
   border-color: #f2722a;
   background: #f0f7ff;
}
.marka-sinif-item input[type="checkbox"] {
   display: none;
}
.marka-sinif-item input[type="checkbox"]:checked + label {
   color: #f2722a;
   font-weight: 600;
}
.marka-sinif-item input[type="checkbox"]:checked ~ .marka-sinif-item {
   border-color: #f2722a;
   background: #f0f7ff;
}
.info-section {
   padding: 80px 0;
   background: #f8f9fa;
}
.info-card {
   background: #fff;
   border-radius: 12px;
   padding: 35px;
   height: 100%;
   box-shadow: 0 2px 8px rgba(0,0,0,0.08);
   border: 1px solid #e8e8e8;
}
.info-card:hover {
   box-shadow: 0 4px 12px rgba(0,0,0,0.12);
   border-color: #f2722a;
}
.info-card i {
   font-size: 48px;
   color: #f2722a;
   margin-bottom: 20px;
}
.info-card h3 {
   font-size: 24px;
   font-weight: 700;
   margin-bottom: 15px;
   color: #faa733;
}
.info-card p {
   color: #666;
   line-height: 1.8;
}
.sss-section {
   padding: 80px 0;
}
.sss-item {
   background: #fff;
   border: 2px solid #e0e0e0;
   border-radius: 8px;
   margin-bottom: 15px;
   overflow: hidden;
}
.sss-question {
   padding: 20px;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-weight: 600;
   color: #faa733;
}
.sss-question:hover {
   background: #f8f9fa;
}
.sss-question i {
   color: #f2722a;
}
.sss-item.active .sss-question i {
   transform: rotate(180deg);
}
.sss-answer {
   max-height: 0;
   overflow: hidden;
}
.sss-item.active .sss-answer {
   max-height: 500px;
}
.sss-answer-content {
   padding: 0 20px 20px;
   color: #666;
   line-height: 1.8;
}
.avantages-list {
   list-style: none;
   padding: 0;
}
.avantages-list li {
   padding: 10px 0;
   padding-left: 30px;
   position: relative;
   color: #666;
}
.avantages-list li:before {
   content: "\f00c";
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
   position: absolute;
   left: 0;
   color: #28a745;
}
.marka-sinif-item.selected {
   border-color: #0073d7;
   background: #f0f7ff;
}
.form-sections {
margin-top: 0;
background: #fff;
border-radius: 12px;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
border: 1px solid #f2f2fa;
overflow: hidden;
}
.tab-buttons {
   display: flex;
   gap: 0;
   background: #f9fafb;
   border-bottom: 1px solid #e5e7eb;
   padding: 0;
}
.tab-button {
   flex: 1;
   padding: 16px 24px;
   background: transparent;
   border: none;
   cursor: pointer;
   font-size: 16px;
   font-weight: 600;
   color: #6b7280;
   text-align: center;
   border-bottom: 3px solid transparent;
   position: relative;
}
.tab-button:hover {
   background: #f3f4f6;
   color: #374151;
}
.tab-button.active {
   background: #fff;
   color: #f2722a;
   border-bottom: 3px solid #f2722a;
}
.tab-content {
   display: none;
   padding: 32px;
}
.tab-content.active {
   display: block;
}
.section-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 12px;
}
.section-header span {
   font-size: 20px;
   font-weight: 700;
   color: #faa733;
   margin: 0;
}
.section-subtitle {
   color: #6b7280;
   font-size: 14px;
   margin-bottom: 24px;
}
.btn-find {
   background: #f2722a;
   color: #fff;
   padding: 10px 20px;
   border: none;
   border-radius: 6px;
   font-size: 14px;
   font-weight: 600;
   cursor: pointer;
}
.btn-find:hover {
   background: #faa733;
}
.kategoriler-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 16px;
}
@media (max-width: 1024px) {
   .kategoriler-grid {
       grid-template-columns: repeat(3, 1fr);
   }
}
@media (max-width: 768px) {
   .kategoriler-grid {
       grid-template-columns: repeat(2, 1fr);
   }
}
@media (max-width: 480px) {
   .kategoriler-grid {
       grid-template-columns: 1fr;
   }
}
.kategori-item {
   border: 1px solid #e5e7eb;
   border-radius: 12px;
   padding: 20px;
   cursor: pointer;
   background: #fff;
   text-align: center;
   box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.kategori-item:hover {
   border-color: #f2722a;
   box-shadow: 0 4px 12px rgba(68,167,223,0.15);
}
.kategori-item input[type="checkbox"] {
   display: none;
}
.kategori-icon {
   font-size: 32px;
   color: #f2722a;
   margin-bottom: 12px;
}
.kategori-title {
   font-size: 14px;
   font-weight: 700;
   color: #faa733;
   margin-bottom: 8px;
}
.kategori-desc {
   font-size: 12px;
   color: #6b7280;
   line-height: 1.5;
}
.kategori-item.selected {
   border-color: #f2722a;
   background: #f0f7ff;
}
.kategori-item.selected .kategori-icon {
   color: #f2722a;
}
.sinif-selection-container {
   display: grid;
   grid-template-columns: 1fr 350px;
   gap: 30px;
}
@media (max-width: 1024px) {
   .sinif-selection-container {
       grid-template-columns: 1fr;
   }
}
.sinif-selection-container {
   display: grid;
   grid-template-columns: 1fr 320px;
   gap: 24px;
}
@media (max-width: 1024px) {
   .sinif-selection-container {
       grid-template-columns: 1fr;
   }
}
.siniflar-list {
   background: #fff;
   border: 1px solid #e5e7eb;
   border-radius: 8px;
   padding: 20px;
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 12px;
}
@media (max-width: 768px) {
   .siniflar-list {
       grid-template-columns: repeat(2, 1fr);
   }
}
@media (max-width: 480px) {
   .siniflar-list {
       grid-template-columns: 1fr;
   }
}
.sinif-item {
   display: flex;
   align-items: center;
   padding: 12px 11px;
   border-radius: 6px;
   cursor: pointer;
   border: 1px solid #e5e7eb;
   background: #fff;
}
.sinif-item:hover {
   background: #f9fafb;
   border-color: #f2722a;
}
.sinif-item input[type="checkbox"] {
   width: 18px;
   height: 18px;
   margin-right: 5px;
   cursor: pointer;
   accent-color: #f2722a;
   flex-shrink: 0;
}
.sinif-item.disabled {
   opacity: 0.5;
   cursor: not-allowed;
}
.sinif-item.disabled input[type="checkbox"] {
   cursor: not-allowed;
}
.sinif-no {
   font-weight: 700;
   color: #faa733;
   margin-right: 8px;
   min-width: 20px;
   flex-shrink: 0;
}
.sinif-text {
   color: #374151;
   font-size: 14px;
   flex: 1;
}
.sinif-item.selected {
   background: #f0f7ff;
   border-color: #f2722a;
}
.sinif-item.selected .sinif-no,
.sinif-item.selected .sinif-text {
   color: #f2722a;
   font-weight: 600;
}
.fiyat-panel {
   background: #f9fafb;
   border-radius: 12px;
   padding: 24px;
   position: sticky;
   top: 20px;
   border: 1px solid #e5e7eb;
}
.secili-siniflar-box {
   margin-bottom: 24px;
}
.secili-siniflar-box span {
   font-size: 14px;
   font-weight: 600;
   color: #faa733;
   margin-bottom: 12px;
}
.secili-sinif-number {
   display: flex;
justify-content: space-evenly;
background: #f2722a;
color: #fff;
padding: 10px;
border-radius: 8px;
max-width: 40px;
max-height: 40px;
min-height: 40px;
font-size: 16px;
font-weight: 700;
min-width: 40px;
}
.secili-sinif-count {
   font-size: 13px;
   color: #6b7280;
}
.fiyat-section {
   margin-top: 24px;
   padding-top: 24px;
   border-top: 1px solid #e5e7eb;
}
.fiyat-section span {
   font-size: 14px;
   font-weight: 600;
   color: #faa733;
   margin-bottom: 16px;
}
.fiyat-item {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 12px 0;
   border-bottom: 1px solid #e5e7eb;
}
.fiyat-item:last-child {
   border-bottom: none;
   font-size: 18px;
   font-weight: 700;
   margin-top: 12px;
   padding-top: 16px;
   border-top: 2px solid #e5e7eb;
}
.fiyat-label {
   color: #374151;
   font-size: 14px;
   font-weight: 500;
}
.fiyat-label i {
   margin-left: 4px;
   color: #9ca3af;
   font-size: 12px;
}
.fiyat-value {
   font-weight: 600;
   color: #111827;
   font-size: 15px;
}
.fiyat-item:last-child .fiyat-label {
   color: #111827;
   font-size: 16px;
}
.fiyat-item:last-child .fiyat-value {
   color: #111827;
   font-size: 20px;
}
.btn-basvuru {
   background: #ff6b35;
   color: #fff;
   padding: 16px;
   border: none;
   border-radius: 8px;
   font-size: 16px;
   font-weight: 700;
   cursor: pointer;
   width: 100%;
   margin-top: 20px;
}
.btn-basvuru:hover {
   background: #faa733;
}
/* Sınıf Seçimine Devam Et Butonu */
.btn-devam-et {
   background: linear-gradient(135deg, #f2722a 0%, #faa733 100%);
   color: #fff;
   padding: 12px 24px;
   border: none;
   border-radius: 8px;
   font-size: 14px;
   font-weight: 700;
   cursor: pointer;
   box-shadow: 0 2px 8px rgba(68,167,223,0.3);
   display: none;
   align-items: center;
   gap: 8px;
   transition: all 0.3s ease;
}
.btn-devam-et.show {
   display: flex;
   animation: pulse 1.5s ease-in-out infinite;
}
.btn-devam-et:hover {
   background: linear-gradient(135deg, #faa733 0%, #f4782b 100%);
   box-shadow: 0 4px 12px rgba(68,167,223,0.5);
   transform: translateY(-1px);
}
.btn-devam-et:active {
   transform: translateY(0);
}
.btn-devam-et i {
   font-size: 16px;
}
@keyframes pulse {
   0%, 100% {
       opacity: 1;
       box-shadow: 0 2px 8px rgba(68,167,223,0.3);
   }
   50% {
       opacity: 0.8;
       box-shadow: 0 4px 16px rgba(68,167,223,0.6);
   }
}
@media (max-width: 768px) {
   .btn-devam-et {
       padding: 10px 18px;
       font-size: 12px;
   }
}
/* Modal Stilleri */
.modal-overlay {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0,0,0,0.5);
   z-index: 9999;
   align-items: center;
   justify-content: center;
}
.modal-overlay.active {
   display: flex;
}
.modal-content {
   background: #fff;
   border-radius: 12px;
   width: 90%;
   max-width: 900px;
   max-height: 90vh;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.modal-header {
   padding: 24px;
   border-bottom: 1px solid #e5e7eb;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: #f9fafb;
}
.modal-header span {
   font-size: 20px;
   font-weight: 700;
   color: #fff;
   margin: 0;
}
.modal-close {
   background: #fff;
   border: none;
   font-size: 24px;
   color: #f3732b;
   cursor: pointer;
   padding: 0;
   width: 32px;
   height: 32px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 4px;
}
.modal-close:hover {
   background: #f3732b;
   color: #fff;
}
.modal-search {
   padding: 20px 24px;
   border-bottom: 1px solid #e5e7eb;
   background: #fff;
}
.modal-search input {
   width: 100%;
   padding: 12px 16px;
   border: 1px solid #d1d5db;
   border-radius: 8px;
   font-size: 16px;
}
.modal-search input:focus {
   outline: none;
   border-color: #f2722a;
   box-shadow: 0 0 0 3px rgba(68,167,223,0.1);
}
.modal-body {
   padding: 24px;
   overflow-y: auto;
   flex: 1;
}
.modal-body::-webkit-scrollbar {
   width: 8px;
}
.modal-body::-webkit-scrollbar-track {
   background: #f3f4f6;
}
.modal-body::-webkit-scrollbar-thumb {
   background: #d1d5db;
   border-radius: 4px;
}
.sinif-detay-item {
   padding: 20px;
   border: 1px solid #e5e7eb;
   border-radius: 8px;
   margin-bottom: 16px;
   background: #fff;
}
.sinif-detay-item.hidden {
   display: none;
}
.sinif-detay-header {
   display: flex;
   align-items: center;
   margin-bottom: 12px;
}
.sinif-detay-no {
   font-size: 24px;
   font-weight: 700;
   color: #f2722a;
   margin-right: 16px;
   min-width: 50px;
}
.sinif-detay-title {
   font-size: 18px;
   font-weight: 600;
   color: #faa733;
}
.sinif-detay-content {
   margin-top: 12px;
   padding-left: 66px;
}
.sinif-detay-content ul {
   list-style: none;
   padding: 0;
   margin: 0;
}
.sinif-detay-content li {
   padding: 8px 0;
   color: #374151;
   font-size: 14px;
   line-height: 1.6;
   border-bottom: 1px solid #f3f4f6;
}
.sinif-detay-content li:last-child {
   border-bottom: none;
}
.sinif-detay-content li:before {
   content: "•";
   color: #f2722a;
   font-weight: bold;
   margin-right: 8px;
}
.domain-extension {
    color: #f2722a !important;
    font-weight: 600;
}
.price-badge {
    display: inline-block;
    border: 1px solid #f2722a !important;
    color: #f2722a;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    background: rgba(242, 114, 42, 0.05);
}

/* ========== YENİ DOMAIN LİSTE SECTION - MOBİL UYUMLU ========== */
.odw-auction-section {
    padding: 30px 0;
}

.odw-auction-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.odw-auction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
    gap: 16px;
}

.odw-auction-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.odw-auction-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    background: #f3f4f6;
    transition: all 0.2s;
}

.odw-auction-tabs a:hover {
    background: #e5e7eb;
    color: #374151;
}

.odw-auction-tabs a.active {
    background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
    color: #fff;
}

.odw-auction-tabs a i {
    font-size: 16px;
}

.odw-auction-tools {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Filtre Butonları */
.odw-type-filter {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;
    padding: 4px;
    border-radius: 12px;
}

.odw-filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.odw-filter-btn i {
    font-size: 16px;
}

.odw-filter-btn:hover {
    color: #1f2937;
    background: rgba(255,255,255,0.7);
}

.odw-filter-btn.active {
    background: linear-gradient(135deg, #f2712a 0%, #faa733 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(242, 113, 42, 0.3);
}

.odw-filter-btn.active i {
    color: #fff;
}

/* Filtre sonuç sayısı badge */
.odw-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 4px;
}

.odw-auction-search {
    position: relative;
}

.odw-auction-search input {
    padding: 10px 16px 10px 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    width: 220px;
    background: #f9fafb;
}

.odw-auction-search input:focus {
    outline: none;
    border-color: #F97316;
    background: #fff;
}

.odw-auction-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.odw-btn-sell {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(to right, #f2712a, #faa733) !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 15px rgba(242, 113, 42, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.odw-btn-sell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #f2712a, #faa733);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.odw-btn-sell:hover::before {
    opacity: 1;
}

.odw-btn-sell:hover {
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(242, 113, 42, 0.4);
    transform: translateY(-2px);
}

/* Tablo Wrapper - Mobilde Yan Kaydırma */
.odw-auction-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.odw-auction-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
}

.odw-auction-table thead {
    background: #f9fafb;
}

.odw-auction-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

.odw-auction-table td {
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
    white-space: nowrap;
}

.odw-auction-table tbody tr:hover {
    background: #fefce8;
}

.odw-auction-table tbody tr:last-child td {
    border-bottom: none;
}

/* Domain Hücre */
.odw-domain-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.odw-domain-fav {
    color: #F97316;
    font-size: 18px;
    cursor: pointer;
}

.odw-domain-name {
    font-weight: 600;
    color: #111827;
    font-size: 15px;
    transition: color 0.2s ease;
}

.odw-domain-name:hover {
    color: #F97316;
}

.odw-domain-name .ext {
    color: #F97316;
    font-weight: 600;
}

.odw-external-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.odw-transfer-fee-warning {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 1px solid #F59E0B;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.odw-transfer-fee-warning i {
    color: #F59E0B;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.odw-transfer-fee-warning-text {
    font-size: 13px;
    color: #92400E;
    line-height: 1.5;
}

.odw-transfer-fee-warning-text strong {
    color: #78350F;
}

/* Fiyat */
.odw-price {
    font-weight: 600;
    color: #374151;
}

.odw-price-highlight {
    background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 16px;
}

.odw-price-highlight::after {
    content: " TL";
    -webkit-text-fill-color: #F97316;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

/* Teklif Sayısı */
.odw-bid-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #fef3c7;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #92400e;
}

/* Yaş */
.odw-age {
    color: #6b7280;
    font-size: 16px;
}

.odw-age-new {
    color: #10b981;
    font-weight: 600;
}

/* Kalan Süre */
.odw-countdown {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

/* Teklif Formu */
.odw-bid-form-inline {
    display: flex;
    gap: 8px;
    align-items: center;
}

.odw-bid-form-inline input {
    width: 100px;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

.odw-bid-form-inline input:focus {
    outline: none;
    border-color: #F97316;
}

.odw-btn-bid {
    padding: 8px 16px;
    background: linear-gradient(to right, #f2712a, #faa733) !important;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 8px 15px rgba(242, 113, 42, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.odw-btn-bid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #f2712a, #faa733);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.odw-btn-bid:hover::before {
    opacity: 1;
}

.odw-btn-bid:hover {
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(242, 113, 42, 0.4);
    transform: translateY(-2px);
}

.odw-btn-buy {
    padding: 8px 20px;
    background: linear-gradient(to right, #f2712a, #faa733) !important;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(242, 113, 42, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.odw-btn-buy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #f2712a, #faa733);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.odw-btn-buy:hover::before {
    opacity: 1;
}

.odw-btn-buy:hover {
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(242, 113, 42, 0.5);
    transform: translateY(-2px);
}

/* Boş Durum */
.odw-auction-empty {
    padding: 60px 20px;
    text-align: center;
}

.odw-auction-empty i {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.odw-auction-empty h4 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.odw-auction-empty p {
    color: #6b7280;
    margin-bottom: 20px;
}

/* Pagination */
.odw-auction-pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 20px;
    border-top: 1px solid #e5e7eb;
}

.odw-auction-pagination button {
    width: 36px;
    height: 36px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.odw-auction-pagination button:hover {
    border-color: #F97316;
    color: #F97316;
}

.odw-auction-pagination button.active {
    background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
    color: #fff;
    border-color: transparent;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .odw-auction-header {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }
    
    .odw-auction-tabs {
        justify-content: center;
        width: 100%;
    }
    
    .odw-auction-tabs a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .odw-auction-tools {
        flex-direction: column;
        width: 100%;
    }
    
    .odw-auction-search {
        width: 100%;
    }
    
    .odw-auction-search input {
        width: 100%;
    }
    
    .odw-btn-sell {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobilde tablo yan kaydırılabilir olsun */
    .odw-auction-table-wrap {
        margin: 0 -16px;
        padding: 0 16px;
    }
    
    .odw-auction-table {
        min-width: 700px;
    }
    
    .odw-auction-table th,
    .odw-auction-table td {
        padding: 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .odw-auction-tabs a span {
        display: none;
    }
    
    .odw-auction-tabs a i {
        font-size: 18px;
    }
    
    .odw-auction-tabs a {
        padding: 10px 14px;
    }
    
    /* Filtre butonları mobil */
    .odw-type-filter {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .odw-filter-btn span {
        display: none;
    }
    
    .odw-filter-btn {
        padding: 8px 12px;
    }
    
    .odw-auction-tools {
        justify-content: space-between;
    }
}

/* ========== AÇIK ARTIRMA KURALLARI MODAL ========== */
.odw-rules-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.odw-rules-overlay.active {
    opacity: 1;
    visibility: visible;
}

.odw-rules-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.odw-rules-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.odw-rules-header {
    background: linear-gradient(to right, #f2712a, #faa733);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    flex-shrink: 0;
}

.odw-rules-header i {
    font-size: 24px;
}

.odw-rules-header span {
    font-size: 18px;
    font-weight: 600;
}

.odw-rules-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.odw-rules-content {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 8px;
}

.odw-rules-content::-webkit-scrollbar {
    width: 6px;
}

.odw-rules-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.odw-rules-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.odw-rules-content::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.odw-rules-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.odw-rules-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.odw-rules-section h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.odw-rules-section h4 i {
    color: #f2712a;
    font-size: 18px;
}

.odw-rules-section ul {
    margin: 0;
    padding-left: 20px;
}

.odw-rules-section li {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.odw-rules-section li:last-child {
    margin-bottom: 0;
}

.odw-rules-section li strong {
    color: #c0392b;
}

.odw-rules-accept {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 2px solid #f0f0f0;
}

.odw-rules-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.odw-rules-checkbox input {
    display: none;
}

.odw-rules-checkbox .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.odw-rules-checkbox input:checked + .checkmark {
    background: linear-gradient(to right, #f2712a, #faa733);
    border-color: #f2712a;
}

.odw-rules-checkbox input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.odw-rules-checkbox .label-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.odw-rules-footer {
    padding: 16px 24px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.odw-rules-btn-cancel {
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.odw-rules-btn-cancel:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.odw-rules-btn-accept {
    padding: 12px 24px;
    background: linear-gradient(to right, #f2712a, #faa733);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(242, 113, 42, 0.3);
}

.odw-rules-btn-accept:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 113, 42, 0.4);
}

.odw-rules-btn-accept:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 600px) {
    .odw-rules-modal {
        width: 95%;
        max-height: 90vh;
    }
    
    .odw-rules-header {
        padding: 16px 20px;
    }
    
    .odw-rules-body {
        padding: 20px;
    }
    
    .odw-rules-content {
        max-height: 280px;
    }
    
    .odw-rules-footer {
        padding: 14px 20px;
    }
}
                    thead input {
                        width: 100%;
                    }
                    @import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700,300,100);

                    .popover {
                        color:black;
                    }

                    .search-form .form-group {
                        float: right !important;
                        transition: all 0.35s, border-radius 0s;
                        width: 32px;
                        height: 32px;
                        background-color: #fff;
                        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
                        border-radius: 25px;
                        border: 1px solid #ccc;
                    }
                    .search-form .form-group input.form-control {
                        padding-right: 20px;
                        border: 0 none;
                        background: transparent;
                        box-shadow: none;
                        display:block;
                    }
                    .search-form .form-group input.form-control::-webkit-input-placeholder {
                        display: none;
                    }
                    .search-form .form-group input.form-control:-moz-placeholder {
                        /* Firefox 18- */
                        display: none;
                    }
                    .search-form .form-group input.form-control::-moz-placeholder {
                        /* Firefox 19+ */
                        display: none;
                    }
                    .search-form .form-group input.form-control:-ms-input-placeholder {
                        display: none;
                    }
                    .search-form .form-group:hover,
                    .search-form .form-group.hover {
                        width: 100%;
                        border-radius: 4px 25px 25px 4px;
                    }
                    .search-form .form-group span.form-control-feedback {
                        position: absolute;
                        top: -1px;
                        right: -2px;
                        z-index: 2;
                        display: block;
                        width: 34px;
                        height: 34px;
                        line-height: 34px;
                        text-align: center;
                        color: #3596e0;
                        left: initial;
                        font-size: 14px;
                    }

                    /**************card */


                    .card {
                        margin-top: 10px;
                        box-sizing: border-box;
                        border-radius: 12px;
                        background-clip: padding-box;
                    }
                    .card span.card-title {
                        color: #fff;
                        font-size: 24px;
                        font-weight: 300;
                        text-transform: uppercase;
                    }

                    .card .card-image {
                        position: relative;
                        overflow: hidden;
                    }
                    .card .card-image img {
                        border-radius: 2px 2px 0 0;
                        background-clip: padding-box;
                        position: relative;
                        z-index: -1;
                    }
                    .card .card-image span.card-title {
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        padding: 16px;
                    }
                    .card .card-content {
                        padding: 16px;
                        border-radius: 0 0 2px 2px;
                        background-clip: padding-box;
                        box-sizing: border-box;
                    }
                    .card .card-content p {
                        margin: 0;
                        color: inherit;
                    }
                    .card .card-content span.card-title {
                        line-height: 48px;
                    }
                    .card .card-action {
                        border-top: 1px solid rgba(160, 160, 160, 0.2);
                        padding: 16px;
                    }
                    .card .card-action a {
                        color: #ffab40;
                        margin-right: 16px;
                        transition: color 0.3s ease;
                        text-transform: uppercase;
                    }
                    .card .card-action a:hover {
                        color: #ffd8a6;
                        text-decoration: none;
                    }

                    /**** Contact Details **/
                    @import url(https://fonts.googleapis.com/css?family=Raleway:400,200,300,800);
                    @import url(http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
                    figure.snip0057 {
                        font-family: 'Raleway', Arial, sans-serif;
                        position: relative;
                        float: left;
                        overflow: hidden;
                        margin: 10px 1%;
                        min-width: 98%;
                        max-width: 99%;
                        width: 99%;
                        background: #ffffff;
                        color: #000000;
                    }
                    figure.snip0057 * {
                        -webkit-box-sizing: border-box;
                        box-sizing: border-box;
                        -webkit-transition: all 0.35s ease-in-out;
                        transition: all 0.35s ease-in-out;
                    }
                    figure.snip0057 .image {
                        width: 50%;
                        overflow: hidden;
                        z-index: 1;
                        -webkit-transform: skewX(-15deg);
                        transform: skewX(-15deg);
                    }
                    figure.snip0057 .image img {
                        position: relative;
                        display: block;
                        left: -15%;
                        z-index: 1;
                        -webkit-transform: skew(15deg);
                        transform: skew(15deg);
                    }
                    figure.snip0057:before {
                        position: absolute;
                        content: '';
                        height: 100%;
                        width: 45%;
                        background: rgba(0, 0, 0, 0.2);
                        -webkit-transform: skewX(-17deg);
                        transform: skewX(-17deg);
                        -webkit-box-shadow: 15px 0px 25px rgba(0, 0, 0, 0.7);
                        box-shadow: 15px 0px 25px rgba(0, 0, 0, 0.7);
                    }
                    figure.snip0057 figcaption {
                        padding: 20px 30px 20px 20px;
                        position: absolute;
                        right: 0;
                        bottom: 10px;
                        width: 50%;
                    }
                    figure.snip0057 figcaption h2,
                    figure.snip0057 figcaption p {
                        margin: 0;
                        text-align: right;
                        padding: 10px 0;
                        width: 100%;
                    }
                    figure.snip0057 figcaption h2 {
                        font-size: 1.3em;
                        font-weight: 300;
                        text-transform: uppercase;
                        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
                    }
                    figure.snip0057 figcaption h2 span {
                        font-weight: 800;
                    }
                    figure.snip0057 figcaption p {
                        font-size: 0.9em;
                        opacity: 0.8;
                    }
                    figure.snip0057 figcaption .icons {
                        width: 100%;
                        text-align: right;
                    }
                    figure.snip0057 figcaption .icons i {
                        font-size: 26px;
                        padding: 5px;
                        top: 50%;
                        color: #000000;
                        opacity: 0;
                    }
                    figure.snip0057 figcaption a {
                        opacity: 0.3;
                    }
                    figure.snip0057 figcaption a:hover {
                        opacity: 0.8;
                    }
                    figure.snip0057 .position {
                        position: absolute;
                        bottom: 0;
                        width: 100%;
                        text-align: right;
                        padding: 15px 30px;
                        font-size: 0.9em;
                        opacity: 1;
                        font-style: italic;
                        color: #ffffff;
                        background: #000000;
                    }
                    figure.snip0057.blue .position {
                        background: #20638f;
                    }
                    figure.snip0057.red .position {
                        background: #962d22;
                    }
                    figure.snip0057.yellow .position {
                        background: #bf6516;
                    }
                    figure.snip0057:hover figcaption,
                    figure.snip0057.hover figcaption {
                        bottom: 40px;
                    }
                    figure.snip0057:hover .icons i,
                    figure.snip0057.hover .icons i {
                        opacity: 1;
                        -webkit-transition-delay: 0.2s;
                        transition-delay: 0.2s;
                    }
                    figure.snip0057:hover:before,
                    figure.snip0057.hover:before {
                        -webkit-animation: shadow 0.6s ease-in-out;
                        animation: shadow 0.6s ease-in-out;
                    }
                    @-webkit-keyframes shadow {
                        0% {
                            left: 0px;
                        }
                        50% {
                            left: -5px;
                        }
                        100% {
                            left: 0px;
                        }
                    }
                    @keyframes shadow {
                        0% {
                            left: 0px;
                        }
                        50% {
                            left: -5px;
                        }
                        100% {
                            left: 0px;
                        }
                    }

                    /*//// Just styling ////*/
                    .popup-content h3{
                        border-bottom: 1px solid #fff;
                        font-size: 1.2em;
                        margin-bottom: .5em;
                    }
                    /*//////////////////////*/
                    .popup{
                        left: 0;
                        position: fixed;
                        top: 25%;
                        transition: left .5s ease;
                    }
                    .popup-content{
                        background-color: #337AB7;
                        box-shadow:  5px 2px 15px black;
                        box-sizing: border-box;
                        color: white;
                        float: left;
                        height: auto;
                        padding: 1em;
                        width: 275px;
                    }

                    .close{
                        left: -275px;
                    }

                    .button{
                        background-color:  red;
                        border-bottom-right-radius: 10px;
                        border-top-right-radius: 10px;
                        box-shadow:  5px 2px 15px black;
                        float: left;
                        height: 50px;
                        padding-top: 1.5em;
                        width: 25px;
                    }
                    .button::after{
                        content:"◀";
                        color: white;
                        cursor: pointer;
                        font-size: 1.2em;
                        padding: 5px;
                    }
                    .button-closed::after{
                        content:"▶";
                        color: white;
                        cursor: pointer;
                        font-size: 1.2em;
                    }

                    .thattable{
                        padding-right:0px;
                        padding-left:0px;
                    }
/* Sidebar Overlay */
.odw-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2147483640;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.odw-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar */
.odw-sidebar {
    position: fixed;
    top: 0;
    right: -820px;
    width: 500px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2147483641;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.odw-sidebar.active {
    right: 0;
}

.odw-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.odw-sidebar-domain {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
}

.odw-sidebar-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.odw-sidebar-close:hover {
    background: #e5e7eb;
    color: #111;
}

.odw-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* Top Row - Price & Countdown */
.odw-sidebar-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
}

/* Price Section */
.odw-sidebar-price-section {
    text-align: start;
    flex: 1;
}

.odw-sidebar-label {
    font-weight: 400;
    font-size: 14px;
    color: #888;
    margin-bottom: 6px;
}

.odw-sidebar-price {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
}

.odw-sidebar-price::after {
    content: " TL";
    font-size: 1.5rem;
    font-weight: 600;
}

.odw-sidebar-price.no-tl::after {
    display: none;
}

.odw-sidebar-base {
    font-size: 14px;
    color: #888;
    margin-top: 6px;
}

/* Countdown Section */
.odw-countdown-section {
    border-radius: 12px;
    padding: 0;
    margin-bottom: 0;
    text-align: center;
    flex-shrink: 0;
}

.odw-countdown-label {
    font-size: 11px;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.odw-countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.odw-countdown-item {
    outline: 1px dashed #F97316;
    background: rgb(255, 240, 232);
    border-radius: 6px;
    padding: 8px 10px;
    min-width: 45px;
}

.odw-countdown-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #F97316;
    line-height: 1;
}

.odw-countdown-unit {
    display: block;
    font-size: 9px;
    color: #888;
    margin-top: 2px;
    text-transform: uppercase;
}

.odw-countdown-sep {
    font-size: 1rem;
    font-weight: 700;
    color: #ccc;
}

.odw-countdown-expired {
    font-size: 1rem;
    font-weight: 700;
    color: #EF4444;
    padding: 10px;
}

/* Info Rows */
.odw-sidebar-info {
    margin-bottom: 24px;
}

.odw-sidebar-info-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
}

.odw-sidebar-info-row .label {
    color: #666;
    font-size: 16px;
}

.odw-sidebar-info-row .value {
    font-weight: 600;
    color: #111;
    font-size: 16px;
}

/* Bids Section */
.odw-sidebar-bids {
    margin-bottom: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.odw-sidebar-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.odw-bids-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.odw-bids-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.odw-bids-summary {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.odw-refresh-bids {
    width: 32px;
    height: 32px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
    transition: all 0.2s;
}

.odw-refresh-bids:hover {
    background: #F97316;
    color: #fff;
}

.odw-refresh-bids.spinning i {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.odw-sidebar-bids-list {
    flex: 1;
    overflow-y: auto;
    min-height: 100px;
    max-height: none;
}

.odw-sidebar-bid-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.odw-sidebar-bid-item:last-child {
    border-bottom: none;
}

.odw-sidebar-bidder {
    font-size: 14px;
    color: #333;
}

.odw-sidebar-bidder small {
    display: block;
    color: #888;
    font-size: 12px;
    margin-top: 2px;
}

.odw-sidebar-bid-amount {
    font-weight: 700;
    color: #F97316;
    font-size: 15px;
}

.odw-sidebar-no-bids {
    text-align: center;
    padding: 30px;
    color: #888;
    font-size: 14px;
}

.odw-sidebar-loading {
    text-align: center;
    padding: 20px;
    color: #888;
}

/* Sidebar Footer - Sticky Bid Form */
.odw-sidebar-footer {
    padding: 16px 24px;
    border-top: 1px solid #eee;
    background: #fff;
    flex-shrink: 0;
}

.odw-sidebar-bid-input {
    display: flex;
    gap: 10px;
}

.odw-sidebar-bid-input input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
}

.odw-sidebar-bid-input input:focus {
    outline: none;
    border-color: #F97316;
}

.odw-sidebar-bid-btn {
    padding: 12px 20px;
    background: linear-gradient(to right, #f2712a, #faa733) !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 8px 15px rgba(242, 113, 42, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.odw-sidebar-bid-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #f2712a, #faa733);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.odw-sidebar-bid-btn:hover::before {
    opacity: 1;
}

.odw-sidebar-bid-btn:hover {
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(242, 113, 42, 0.4);
    transform: translateY(-2px);
}

.odw-sidebar-bid-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Hemen Satın Al Section */
.odw-sidebar-buy-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.odw-sidebar-buy-info {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.odw-sidebar-buy-price {
    font-size: 28px;
    font-weight: 700;
    color: #10B981;
}

.odw-sidebar-buy-tax {
    font-size: 14px;
    color: #666;
}

.odw-sidebar-buy-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(to right, #f2712a, #faa733) !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 15px rgba(242, 113, 42, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    white-space: nowrap;
}

.odw-sidebar-buy-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #f2712a, #faa733);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.odw-sidebar-buy-btn:hover::before {
    opacity: 1;
}

.odw-sidebar-buy-btn:hover {
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(242, 113, 42, 0.4);
    transform: translateY(-2px);
}

.odw-sidebar-buy-btn:disabled {
    background: #ccc !important;
    cursor: not-allowed;
    box-shadow: none;
}

.odw-sidebar-buy-btn i {
    font-size: 18px;
}

/* Fiyat Teklifi Bölümü */
.odw-sidebar-offer-section {
    margin-top: 20px;
}

.odw-sidebar-offer-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
}

.odw-sidebar-offer-divider::before,
.odw-sidebar-offer-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.odw-sidebar-offer-divider span {
    padding: 0 12px;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
}

.odw-sidebar-offer-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.odw-sidebar-offer-form label i {
    color: #f2712a;
    margin-right: 6px;
}

.odw-sidebar-offer-input {
    display: flex;
    gap: 8px;
}

.odw-sidebar-offer-input input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
}

.odw-sidebar-offer-input input:focus {
    border-color: #f2712a;
    outline: none;
}

.odw-sidebar-offer-btn {
    padding: 10px 16px;
    background: #10B981;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.odw-sidebar-offer-btn:hover {
    background: #059669;
}

.odw-sidebar-offer-form small {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #9ca3af;
}

/* Mevcut Tekliflerim */
.odw-my-offers {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.odw-my-offers-header {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.odw-my-offers-header i {
    color: #f2712a;
}

.odw-my-offer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 8px;
}

.odw-my-offer-amount {
    font-weight: 600;
    color: #111;
}

.odw-my-offer-status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.odw-my-offer-status.pending {
    background: #fef3c7;
    color: #92400e;
}

.odw-my-offer-status.accepted {
    background: #d1fae5;
    color: #059669;
}

.odw-my-offer-status.rejected {
    background: #fee2e2;
    color: #dc2626;
}

.odw-my-offer-date {
    font-size: 11px;
    color: #9ca3af;
}

.odw-your-bid-notice {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    color: #92400e;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
    .odw-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .odw-sidebar-top-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .odw-countdown-section {
        width: 100%;
    }
    
    .odw-countdown-timer {
        justify-content: space-between;
    }
    
    .odw-countdown-item {
        padding: 6px 8px;
        min-width: 38px;
    }
    
    .odw-countdown-value {
        font-size: 0.95rem;
    }
    
    .odw-countdown-unit {
        font-size: 8px;
    }
    
    .odw-countdown-sep {
        font-size: 0.8rem;
    }
    
    .odw-sidebar-body {
        padding: 16px;
    }
    
    .odw-sidebar-footer {
        padding: 12px 16px;
    }
    
    .odw-sidebar-bid-input {
        flex-direction: column;
    }
    
    .odw-sidebar-bid-btn {
        width: 100%;
    }
}

/* Toast Notification */
.odw-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.odw-toast.show {
    transform: translateX(0);
}

.odw-toast.success {
    background: #10B981;
}

.odw-toast.error {
    background: #EF4444;
}

.odw-toast-icon {
    font-size: 18px;
    font-weight: bold;
}

.odw-toast-msg {
    font-size: 14px;
}
