@import url(/templates/vgclient/fonts/stylesheet.css);

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #dbdfe9;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff4b0e;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #dbdfe9 transparent;
}

body {
  font-family: "Albert Sans";
  background-color: #fcfcfc !important;
}

.master-breadcrumb,
.breadcrumb {
  background-color: #fcfcfc !important;
}

header.header .logo-img {
  height: 45px;
}

section#main-body {
  min-height: calc(100vh - 465px);
}

.text-muted {
  color: #071437;
}

button {
  &:focus {
    outline: none;
    box-shadow: none;
  }
}

.btn-lg {
  padding: 6px 8px;
  font-size: 14px;
  border-radius: 8px !important;
}

input {
  &:focus-visible {
    outline: none;
    box-shadow: none;
  }
}

:root {
  --bs-primary-light: #e9f3ff;
  --bs-secondary-light: #f9f9f9;
  --bs-success-light: #dfffea;
  --bs-info-light: #f8f5ff;
  --bs-warning-light: #fff8dd;
  --bs-danger-light: #ffeef3;
  --bs-dark-light: #f9f9f9;
}

a {
  color: #2b7fff;

  &:hover {
    color: #2b7fffe6;
    text-decoration: none;
  }

  &.disabled {
    color: #2b7fffe6;
    opacity: 0.6;
  }
}

.btn {
  --bs-btn-font-weight: 500;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.475rem;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: none;
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
  display: inline-block;
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  box-shadow: var(--bs-btn-box-shadow);
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #1b84ff;
  --bs-btn-border-color: #1b84ff;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #3d96ff;
  --bs-btn-hover-border-color: #3290ff;
  --bs-btn-focus-shadow-rgb: 23, 112, 217;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #499dff;
  --bs-btn-active-border-color: #3290ff;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #1b84ff;
  --bs-btn-disabled-border-color: #1b84ff;
}

.btn-secondary {
  --bs-btn-color: #78829d;
  --bs-btn-bg: #f1f1f4;
  --bs-btn-border-color: #f1f1f4;
  --bs-btn-hover-color: #78829d;
  --bs-btn-hover-bg: #dbdfe9;
  --bs-btn-hover-border-color: #dbdfe9;
  --bs-btn-focus-shadow-rgb: 205, 205, 207;
  --bs-btn-active-color: #78829d;
  --bs-btn-active-bg: #dbdfe9;
  --bs-btn-active-border-color: #dbdfe9;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: #78829d;
  --bs-btn-disabled-bg: #f1f1f4;
  --bs-btn-disabled-border-color: #f1f1f4;
}

.btn-default {
  background: #f9f9f9;
  color: #252f4a;
  border: 1px solid #f1f1f4;

  &:hover,
  &.disabled {
    background: #e9f3ff;
    color: #1b84ff;
    border-color: transparent;

    i {
      color: #1b84ff;
    }
  }

  i {
    font-size: 10px;
    color: #252f4a;
  }
}

.btn-success {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #17c653;
  --bs-btn-border-color: #17c653;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #3acf6d;
  --bs-btn-hover-border-color: #2ecc64;
  --bs-btn-focus-shadow-rgb: 20, 168, 71;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #45d175;
  --bs-btn-active-border-color: #2ecc64;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #17c653;
  --bs-btn-disabled-border-color: #17c653;
}

.btn-info {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #7239ea;
  --bs-btn-border-color: #7239ea;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #6130c7;
  --bs-btn-hover-border-color: #5b2ebb;
  --bs-btn-focus-shadow-rgb: 135, 87, 237;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #5b2ebb;
  --bs-btn-active-border-color: #562bb0;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #7239ea;
  --bs-btn-disabled-border-color: #7239ea;
}

.btn-warning {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #f6c000;
  --bs-btn-border-color: #f6c000;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #f7c926;
  --bs-btn-hover-border-color: #f7c61a;
  --bs-btn-focus-shadow-rgb: 209, 163, 0;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #f8cd33;
  --bs-btn-active-border-color: #f7c61a;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #f6c000;
  --bs-btn-disabled-border-color: #f6c000;
}

.btn-danger {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #f8285a;
  --bs-btn-border-color: #f8285a;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #f94873;
  --bs-btn-hover-border-color: #f93e6b;
  --bs-btn-focus-shadow-rgb: 211, 34, 77;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #f9537b;
  --bs-btn-active-border-color: #f93e6b;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #f8285a;
  --bs-btn-disabled-border-color: #f8285a;
}

.btn-dark {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #1e2129;
  --bs-btn-border-color: #1e2129;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #404249;
  --bs-btn-hover-border-color: #35373e;
  --bs-btn-focus-shadow-rgb: 64, 66, 73;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #4b4d54;
  --bs-btn-active-border-color: #35373e;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #1e2129;
  --bs-btn-disabled-border-color: #1e2129;
}

.btn-light {
  --bs-btn-color: #78829d;
  --bs-btn-bg: #f9f9f9;
  --bs-btn-border-color: #f9f9f9;
  --bs-btn-hover-color: #78829d;
  --bs-btn-hover-bg: #f1f1f4;
  --bs-btn-hover-border-color: #f1f1f4;
  --bs-btn-focus-shadow-rgb: 212, 212, 212;
  --bs-btn-active-color: #78829d;
  --bs-btn-active-bg: #f1f1f4;
  --bs-btn-active-border-color: #f1f1f4;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: #78829d;
  --bs-btn-disabled-bg: #f9f9f9;
  --bs-btn-disabled-border-color: #f9f9f9;
}

.btn-lg,
.btn-group-lg > .btn {
  --bs-btn-padding-y: 1rem;
  --bs-btn-padding-x: 1.75rem;
  --bs-btn-font-size: 1.15rem;
  --bs-btn-border-radius: 0.625rem;
}

.btn-sm,
.btn-group-sm > .btn {
  --bs-btn-padding-y: 0.55rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 0.95rem;
  --bs-btn-border-radius: 0.425rem;
}

.bg-color-gold {
  color: #f6c000 !important;
  background: #fff8dd;
  &:hover {
    color: #fff !important;
    background: #f6c000;
  }
}

.bg-color-green {
  color: #17c653 !important;
  background-color: #dfffea;
  &:hover {
    background-color: #17c653;
    color: #fff !important;
  }
}

.bg-color-red {
  color: #f8285a !important;
  background-color: #ffeef3;
  &:hover {
    background-color: #f8285a;
    color: #fff !important;
  }
}

.bg-color-blue {
  background-color: #e9f3ff;
  color: #1b84ff !important;
  &:hover {
    background-color: #1b84ff;
    color: #fff !important;
  }
}
.bg-color-orange {
  color: #ff6600 !important;
  background-color: #fff0e6;
  &:hover {
    background-color: #ff6600;
    color: #fff !important;
  }
}

.bg-color-pink {
  color: #e671b8 !important;
  background-color: #fceaf4;
  &:hover {
    background-color: #e671b8;
    color: #fff !important;
  }
}

.bg-color-purple {
  color: #7b4f9d !important;
  background-color: #efe7f4;
  &:hover {
    background-color: #7b4f9d;
    color: #fff !important;
  }
}

.bg-color-lime {
  color: #8cbf26 !important;
  background-color: #f1f8e1;
  &:hover {
    background-color: #8cbf26;
    color: #fff !important;
  }
}

.bg-color-magenta {
  color: #ff0097 !important;
  background-color: #ffe6f3;
  &:hover {
    background-color: #ff0097;
    color: #fff !important;
  }
}

.bg-color-teal {
  color: #00aba9 !important;
  background-color: #e0f7f6;
  &:hover {
    background-color: #00aba9;
    color: #fff !important;
  }
}

.bg-color-turquoise {
  color: #1abc9c !important;
  background-color: #e4f8f3;
  &:hover {
    background-color: #1abc9c;
    color: #fff !important;
  }
}

.bg-color-emerald {
  color: #2ecc71 !important;
  background-color: #e6f9ef;
  &:hover {
    background-color: #2ecc71;
    color: #fff !important;
  }
}

.bg-color-amethyst {
  color: #9b59b6 !important;
  background-color: #f3eaf8;
  &:hover {
    background-color: #9b59b6;
    color: #fff !important;
  }
}

.bg-color-wet-asphalt {
  color: #004258 !important;
  background-color: #e6eff3;
  &:hover {
    background-color: #004258;
    color: #fff !important;
  }
}

.bg-color-midnight-blue {
  color: #2c3e50 !important;
  background-color: #e9edf1;
  &:hover {
    background-color: #2c3e50;
    color: #fff !important;
  }
}

.bg-color-sun-flower {
  color: #f1c40f !important;
  background-color: #fff8dd;
  &:hover {
    background-color: #f1c40f;
    color: #fff !important;
  }
}

.bg-color-pomegranate {
  color: #c0392b !important;
  background-color: #fdecea;
  &:hover {
    background-color: #c0392b;
    color: #fff !important;
  }
}

.bg-color-silver {
  color: #bdc3c7 !important;
  background-color: #f4f6f7;
  &:hover {
    background-color: #bdc3c7;
    color: #fff !important;
  }
}

.bg-color-asbestos {
  color: #7f8c8d !important;
  background-color: #eef1f2;
  &:hover {
    background-color: #7f8c8d;
    color: #fff !important;
  }
}

.label {
  font-size: 0.7rem;
  &.label-primary {
    background-color: #e9f3ff;
    color: #1b84ff;
  }
  &.label-success {
    background-color: #dfffea;
    color: #17c653;
  }
  &.label-secondary {
    background-color: #f9f9f9;
    color: #252f4a;
  }
  &.label-warning {
    background-color: #fff8dd;
    color: #d2a502;
  }
  &.label-danger {
    background-color: #ffeef3;
    color: #f8285a;
  }
}

.status {
  &.status-pending,
  &.status-pending-transfer,
  &.status-pending-registration,
  &.status-refunded,
  &.status-grace,
  &.status-redemption {
    background-color: #fff8dd;
    color: #d2a502;
  }

  &.status-active,
  &.status-completed,
  &.status-open,
  &.status-paid,
  &.status-accepted {
    background-color: #dfffea;
    color: #17c653;
  }

  &.status-unpaid,
  &.status-inprogress,
  &.status-suspended,
  &.status-expired,
  &.status-fraud,
  &.status-dead,
  &.status-lost,
  &.status-closed,
  &.status-cancelled,
  &.status-customer-reply,
  &.status-terminated {
    background-color: #ffeef3;
    color: #f8285a;
  }

  &.status-onhold,
  &.status-payment-pending,
  &.status-delivered {
    background-color: #e9f3ff;
    color: #1b84ff;
  }

  &.status-answered {
    background-color: #f3e9fb;
    color: #7b4f9d;
  }

  &.status-transferred-away {
    background-color: #e6f0f4;
    color: #004258;
  }

  &.status-collections {
    background-color: #ecf0f3;
    color: #2c3e50;
  }
}

.vg-button,
.web-bg-button {
  background-color: #ff4b0e;
  box-shadow:
    0 1px 2px rgb(143 36 0 / 0.56),
    0 0 0 1px #ff4b0e;
  border-radius: 8px;
  border: 1px solid rgb(255 255 255 / 0.24);
  padding: 6px 8px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  &:hover {
    background-color: #f54a00;
    color: #fff;

    svg {
      color: #fff;
    }
  }
  svg {
    width: 20px;
    height: 20px;
  }
}

.new-topbar {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
  background-color: #ff4b0e;
  background-image: url(/templates/vgclient/img/left-bar.svg), url(/templates/vgclient/img/right-bar.svg);
  background-position:
    left center,
    right center;
  background-repeat: no-repeat, no-repeat;

  .promo-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;

    p {
      margin: 0;
      font-weight: bold;
      color: inherit;
    }

    a {
      color: #fff;
      font-size: 14px;
      padding: 6px 8px;
      border-radius: 6px;
      background-color: #292929;

      &:hover {
        text-decoration: none;
      }
    }
  }
}

.breadcrumb {
  padding: 13px 0 !important;
  li {
    color: #818e98;

    a {
      color: #818e98;
      font-weight: 600;
      font-size: 13px;
      &:hover {
        text-decoration: none;
        color: #ff4b0e;
      }
    }
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
}

.card {
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f1f4;
  border-radius: 0.625rem;
  overflow: auto;

  .card-header,
  .card-footer {
    padding: 0 20px;
    background: #fff;
    color: oklch(14.1% 0.005 285.823);
    line-height: 24px;
  }

  .card-header {
    border-bottom: 1px solid #f1f1f4;
    h3 {
      padding: 18px 0;
      font-size: 15px;
      color: #071437;

      i {
        color: #767474;
        font-size: 17px;
      }

      .card-minimise {
        margin-right: -10px;
      }

      a {
        i {
          color: inherit;
          font-size: inherit;
        }
      }

      .float-right {
        a {
          padding: 6px 23px;
        }
      }
    }
  }

  .card-body {
    color: oklch(0.21 0.006 285.885);
    font-size: 14px;
  }

  .card-footer {
    border-top: 1px solid #f1f1f4;
    padding: 8px 4px;

    .col-button-left {
      padding-right: 0 !important;
    }

    .col-button-right {
      padding-left: 0 !important;
    }
  }
}

.tiles {
  .tile {
    border: 0;
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
    border-radius: 0.625rem;
    border: 1px solid #f1f1f4;
    background-image: url(/templates/vgclient/img/tile-bg.png);
    background-size: cover;
    background-position: right top -1.7rem;
    background-repeat: no-repeat;
    background-color: #fff;

    &:hover {
      background-color: #f4f4f5;
      i {
        font-size: 26px;
        &:hover {
          color: #d9d9d9;
        }
      }
    }

    .stat {
      color: #071437;
      margin-bottom: 1rem;
    }

    .title {
      color: #0b0809;
      display: flex;
      align-items: center;
      gap: 10px;

      span {
        font-size: 37px;
        font-weight: 600;
        color: #071437;
      }
    }

    i {
      position: inherit;
      font-size: 26px;
      right: 0;
      top: 0;
      color: #d9d9d9;
    }

    .highlight {
      height: 7px;
      border-radius: 6px;
      margin-top: 1.75rem;
    }
  }
}

.popover-user-notifications {
  border-radius: 0.75rem;
  border: 1px solid #f5f4f4;
  background-color: #ffffff;
  font-size: 0.875rem;
  border: 1px solid oklch(94% 0.004 286.32);
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
  ul {
    li {
      border-bottom: 1px solid #eeeaeb;

      a {
        font-size: 14px;
        color: #71717b;

        &:hover {
          background-color: #fafafa;
        }

        .client-alert-item {
          display: flex;
          align-items: start;
          gap: 15px;

          .client-alert-item-media {
            background-color: #f5f4f4;
            display: flex;
            align-items: center;
            width: 40px;
            min-width: 40px;
            height: 40px;
            justify-content: center;
            border-radius: 99px;
            position: relative;

            &.danger {
              background-color: #f8285a3d;
              i {
                color: #f8285a;
              }
            }
            &.warning {
              background-color: #f6c0003d;
              i {
                color: #f6c000;
              }
            }
            &.info {
              background-color: #2b7fff3d;
              i {
                color: #2b7fff;
              }
            }

            .client-alert-item-dot {
              position: absolute;
              bottom: 4px;
              right: 0px;
              width: 8px;
              height: 8px;
              border-radius: 50%;

              &.danger {
                background-color: #f8285a;
              }
              &.warning {
                background-color: #f6c000;
              }
              &.info {
                background-color: #2b7fff;
              }
            }
          }
          .title {
            font-weight: 600;
            color: #0b0809;
          }

          .message {
            color: #71717b;
            margin-left: 0;
          }
        }
      }
    }
  }
}

.sidebar .card {
  border: none;
  box-shadow: 0 0 20px 0 rgba(76, 87, 125, 0.02);
  background-color: #fff;
  margin-bottom: 25px !important;
  overflow: hidden;
  border: 1px solid #eff2f5;
}

.sidebar .card-header {
  background-color: #fff;
  border-bottom: 1px solid #eff2f5;
  padding: 5px 25px;
}

.sidebar .card-title {
  font-weight: 700;
}

.sidebar .card-title i {
  color: #ff4b0e;
  font-size: 14px;
}

.sidebar .list-group-item {
  border: none;
  padding: 14px 25px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: #5e6278;
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: self-end;
  border-bottom: 1px solid #f9f9f9;
}

.sidebar .list-group-item:last-child {
  border-bottom: none;
}

.sidebar .list-group-item#ccCloneRow {
  display: none;
}

.sidebar .sidebar-menu-item-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  border: none !important;
  padding: 0 !important;
}

.sidebar .sidebar-menu-item-icon-wrapper {
  border: none !important;
  background: transparent !important;
  width: 20px !important;
  height: auto !important;
  margin-right: 12px !important;
  margin-top: 2px;
}

.sidebar .list-group-item i {
  color: #a1a5b7;
  font-size: 16px;
  transition: all 0.2s;
  width: 20px;
  text-align: center;
}

.sidebar .list-group-item:hover {
  background-color: #fff0e6;
  color: #ff4b0e;
  padding-left: 30px;
}

.sidebar .list-group-item:hover i {
  color: #ff4b0e;
}

.sidebar .list-group-item.active {
  background-color: #fff0e6 !important;
  color: #ff4b0e;
  border-left: 3px solid #ff4b0e;
  z-index: 1;
  border-color: #ff4b0e !important;
  border-bottom: 0;
}

.sidebar .list-group-item.active i {
  color: #ff4b0e;
}

.sidebar .badge {
  background-color: #f1f1f4 !important;
  color: #7e8299 !important;
  font-weight: 700;
  font-size: 11px;
  padding: 6px 10px !important;
  border-radius: 6px !important;
}

.sidebar .list-group-item:hover .badge {
  background-color: #ff4b0e;
  color: #fff;
}

.client-home-cards {
  .list-group {
    border: 0 !important;
    .list-group-item {
      padding: 15px;
      border-bottom: 1px solid #f1f1f4 !important;

      &:hover {
        background-color: transparent;
      }

      .div-service-name {
        .font-weight-bold {
          color: #071437;
          transition: all 0.15s ease-in-out;
        }
        &:hover {
          .font-weight-bold {
            color: #f54a00;
          }
        }
        .text-domain {
          color: #99a1b7;
        }
      }

      .btn-default {
        color: #99a1b7;
        background-color: #f9f9f9;
        &:hover {
          color: #f54a00;
        }
      }
    }
  }

  .card-footer {
    padding: 1rem 1.25rem !important;
    display: flex;
    justify-content: center;

    a {
      font-weight: 500;
      text-decoration-style: dashed;
      text-decoration-thickness: 1px;
      text-decoration-line: underline;
      text-underline-offset: 4px;
    }
  }
}

#sitejetPromoPanel {
  img {
    border-radius: 10px;
    box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.05);
  }
}

.table-list {
  tr {
    transition: all 0.3s ease-in-out !important;
    &:hover {
      background-color: #fdfdfd;
    }
  }
}

.dataTables_wrapper {
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
  border-radius: 0.625rem;
  border: 1px solid #f1f1f4;
  background: #fff;

  .listtable {
    padding: 10px;
  }

  .dataTables_info {
    color: #99a1b7;
    font-size: 13px;
    padding: 15px;
  }

  .dataTables_filter {
    label {
      .form-control {
        background-color: #fff;
        border-color: #dfdfe6;
        color: #4b5675;
        padding: 4px 10px 4px 35px !important;
        margin-top: 9px;
        margin-right: 10px;
        background-size: 20px;
        background-position: 7px 8px;
        font-size: 0.95rem;
        border-radius: 0.425rem;
      }
    }
  }

  table.table-list {
    border: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    thead {
      th {
        background-color: #fff !important;
        color: #99a1b7;
        font-size: 13px;
        text-align: left;
        border: 0;
        font-weight: 600;
        border-bottom: 0.8px dashed rgb(219, 223, 233);

        &:first-child {
          text-align: center !important;
        }
      }
    }
    tbody {
      tr {
        td {
          color: #1b1718;
          font-size: 14px;
          border: 0;
          border-bottom: 0.8px dashed rgb(219, 223, 233);
          text-align: left !important;

          strong {
            color: #071437;
            font-weight: 600;
          }

          &:first-child {
            text-align: center !important;

            img {
              width: 20px;
              height: 20px;
              object-fit: cover;
            }
          }

          &:nth-child(2) {
            a {
              color: #99a1b7 !important;
            }
          }

          &.dataTables_empty {
            padding: 16px;
            text-align: center !important;
            color: #78829d;
            border-bottom: 1px dashed #dbdfe9 !important;
          }
        }

        &:last-child {
          td {
            border: 0;
          }
        }
      }
    }
  }

  .dataTables_length {
    padding: 10px;

    select {
      background-color: #f5f4f4;
      border-color: #d1d5db;
      color: #4b5675;
      padding: 5px 15px;
      border-radius: 4px;
    }

    label {
      margin-left: 0.75rem;
      padding-top: 0 !important;
      font-size: 0.85rem;
      font-weight: 500;
      color: #4b5675;
    }
  }
}

table {
  border: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  thead {
    th {
      background-color: #fff !important;
      color: #99a1b7;
      font-size: 13px;
      text-align: left;
      border: 0;
      font-weight: 600;
      border-bottom: 0.8px dashed rgb(219, 223, 233);

      &:first-child {
        text-align: center !important;
      }
    }
  }
  tbody {
    tr {
      background-color: transparent !important;
      transition: all 0.3s ease-in-out !important;
      &:hover {
        background-color: #fdfdfd;
      }
      th {
        background-color: #fff !important;
        color: #99a1b7;
        font-size: 13px;
        text-align: left;
        border: 0;
        font-weight: 600;
        border-bottom: 0.8px dashed rgb(219, 223, 233);

        &:first-child {
          text-align: center !important;
        }
      }
      td {
        color: #1b1718;
        font-size: 14px;
        border: 0;
        border-bottom: 0.8px dashed rgb(219, 223, 233);
        text-align: left !important;
        border-top: none !important;
        vertical-align: middle !important;

        strong {
          color: #071437;
          font-weight: 600;
        }

        &:first-child {
          text-align: center !important;

          img {
            width: 20px;
            height: 20px;
            object-fit: cover;
          }
        }

        &:nth-child(2) {
          a {
            color: #99a1b7 !important;
          }
        }
      }

      &:last-child {
        td {
          border: 0;
        }
      }
    }
  }
}

.panel-filter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.header-lined {
  h1 {
    position: relative;
    font-size: 24px;
    margin-bottom: 25px;
    display: inline-block;
    text-transform: capitalize;
    &::before {
      position: absolute;
      content: "";
      height: 2px;
      width: 50%;
      left: 0;
      bottom: -2px;
      background-color: #ff4b0e;
    }
  }
}

.form-control {
  &.custom-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2378829D' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-color: #f1f1f4;
    border: 1px solid #f4f4f5;
    color: #4b5675;
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    border-radius: 0.475rem;
    transition:
      border-color 0.15s ease-in-out,
      box-shadow 0.15s ease-in-out;
    font-weight: 500;
    height: auto;
    padding: 0.575rem 3rem 0.575rem 1rem;

    &:focus {
      outline: 2px solid #ff4b0e;
      outline-offset: -2px;
    }
  }
}

.product {
  box-shadow: -5.41px -1.157px 17.76px -1.157px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #f1f1f4;
  height: 100%;

  header {
    font-weight: 600;
    font-size: 1.5rem;
    color: #36393f;
    border-bottom: 1px solid #e5e7eb;

    div {
      height: 72px;
      display: flex;
      align-items: center;
      align-items: center;
      text-align: center;
    }
  }

  footer {
    .product-pricing {
      margin: 15px 0;
      color: #6b7280;
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 14px;

      span {
        font-weight: 700;
        font-size: 22px;
        color: #212529;
      }
    }

    .vg-button {
      display: flex;
      font-size: 14px;
      align-items: center;
      justify-content: center;
      gap: 5px;

      &:hover {
        background-color: #f54a00;
        color: #fff;

        svg {
          color: #fff;
        }
      }
      svg {
        width: 20px;
        height: 20px;
      }
    }
  }

  .product-desc {
    color: #071437;
    font-size: 14px;
    padding-top: 10px;
  }
}

.product-order-button {
  background: transparent;

  .product-order-button-text.vg-button {
    padding: 7px 25px;

    &:focus {
      outline: none;
      border: none;
    }
  }
}

@media (min-width: 640px) {
  .form-control {
    &.custom-select {
      font-size: 0.875rem;
      line-height: 1.5rem;
    }
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 80rem !important;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 80rem !important;
  }
}

@media (max-width: 1200px) {
  .navbar-expand-xl .navbar-nav {
    justify-content: space-evenly;
  }
}

.tiles .tile {
  cursor: default;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.tiles div.tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.input-group-append .btn-default {
  background-color: #e9ecef;
  border-color: #dee2e6;
  color: #495057;
}

.input-group-append .btn-default:hover {
  background-color: #dde0e3;
  color: #212529;
}

.mr-1 {
  margin-right: 0.25rem !important;
}
.mr-2 {
  margin-right: 0.5rem !important;
}

.card-header h3 i {
  color: #ff4b0e;
  opacity: 0.8;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.main-header {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1000;
}

.middle-header {
  padding: 15px 0;
  position: relative;
}

.logo-img {
  height: 40px;
  width: auto;
}

.header-search-form {
  position: relative;
  max-width: 400px;
  width: 100%;
}
.header-search-input {
  background-color: #f4f6f8;
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 10px 20px 10px 45px;
  height: 45px;
  font-size: 14px;
  transition: all 0.2s ease;
  width: 100%;
}
.header-search-input:focus {
  background-color: #fff;
  border-color: #ff4b0e;
  box-shadow: 0 0 0 4px rgba(255, 75, 14, 0.1);
}
.header-search-btn {
  position: absolute;
  left: 5px;
  top: 5px;
  background: none;
  border: none;
  color: #7e8299;
  padding: 8px 10px;
}

.header-action-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #5e6278;
  background: #f4f6f8;
  margin-left: 10px;
  transition: all 0.2s ease;
  border: none;
  outline: none;
  &:focus {
    outline: none;
    box-shadow: none;
  }
}
.header-action-btn:hover,
.header-action-btn.active,
.header-action-btn[aria-expanded="true"] {
  background: #fff0e6;
  color: #ff4b0e;
}
.header-action-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.header-action-btn .badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff4b0e;
  border: 2px solid #fff;
  color: #fff;
  font-size: 10px;
  padding: 3px 5px;
  border-radius: 50%;
}

.navbar-usericon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #e9f3ff;
  color: #1b84ff;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.main-header .dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 10px;
  margin-top: 10px !important;
  min-width: 260px;
  animation: dropdownFadeIn 0.2s ease;
}
@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-user-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 12px;
  margin-bottom: 10px;
}
.dropdown-user-avatar {
  width: 42px;
  height: 42px;
  background: #ff4b0e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.dropdown-user-details {
  display: flex;
  flex-direction: column;
}
.dropdown-user-name {
  font-weight: 700;
  color: #181c32;
  font-size: 14px;
}
.dropdown-user-email {
  color: #a1a5b7;
  font-size: 12px;
}

.main-header .dropdown-item {
  padding: 10px 12px;
  border-radius: 8px;
  color: #5e6278;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.main-header .dropdown-item:hover {
  background: #f4f6f8;
  color: #ff4b0e;
}
.main-header .dropdown-item i {
  width: 20px;
  text-align: center;
  font-size: 14px;
}
.main-header .dropdown-divider {
  margin: 8px 0;
  border-color: #f1f1f4;
}

.bottom-header {
  background: #fff;
  padding: 0;
}
.modern-navbar .navbar-nav {
  gap: 5px;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1rem 1rem 1rem;
  & > li {
    &.show {
      & > .main-menu {
        background: #f4f6f8;
        color: #ff4b0e;
        &::after {
          transform: rotate(-137deg) !important;
          top: 3px;
          border-color: #ff4b0e;
        }
      }
    }
    & > .main-menu {
      color: #212121;
      text-decoration: none;
      padding: 10px 7px !important;
      border-radius: 6px;
      transition: all 0.2s ease-in-out;
      &::after {
        color: #212121;
        position: relative;
        border-style: solid;
        border-color: #212121;
        border-width: 0px 2px 2px 0px;
        height: 5px;
        width: 5px;
        transform: rotate(45deg);
        transition: all 0.2s ease-in-out;
      }

      &:hover {
        background: #f4f6f8;
        color: #ff4b0e;

        &::after {
          border-color: #ff4b0e;
        }
      }
    }
  }
}
.modern-navbar .nav-link {
  color: #5e6278 !important;
  font-weight: 600;
  font-size: 14px;
  padding: 15px 12px !important;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.modern-navbar .nav-link:hover,
.modern-navbar .nav-item.active .nav-link {
  color: #ff4b0e !important;
  border-bottom-color: #ff4b0e;
  background: transparent;
}
.modern-navbar .dropdown-menu {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 0;
}

.mobile-toggle-btn {
  border: none;
  background: transparent;
  color: #181c32;
  font-size: 24px;
  padding: 5px;
  margin-left: 10px;
}

.mobile-menu-collapse {
  background: #fff;
  border-top: 1px solid #f1f1f4;
  padding: 20px 0;
  max-height: 80vh;
  overflow-y: auto;
}
.mobile-nav-item {
  border-bottom: 1px dashed #f1f1f4;
}
.mobile-nav-link {
  display: block;
  padding: 12px 0;
  color: #181c32;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.mobile-nav-link:hover {
  color: #ff4b0e;
  text-decoration: none;
}

.mobile-submenu {
  padding-left: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 10px;
  display: none;
}
.mobile-submenu.show {
  display: block;
}
.mobile-submenu-link {
  display: block;
  padding: 8px 0;
  color: #5e6278;
  font-size: 14px;
}

@media (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
}

@media (max-width: 1199.98px) {
  .middle-header {
    padding: 10px 0;
  }
  .header-action-btn {
    width: 36px;
    height: 36px;
    margin-left: 8px;
  }
  .navbar-usericon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

.bottom-header {
  background-color: #fff !important;
  border-bottom: 1px solid #f1f1f4;
}

.modern-navbar {
  background: transparent !important;
}

.modern-navbar .navbar-nav .nav-link {
  color: #5e6278 !important;
  font-weight: 600;
  font-size: 14px;
  padding: 15px 12px !important;
  background: transparent !important;
}

.modern-navbar .navbar-nav .nav-link:hover,
.modern-navbar .navbar-nav .nav-item.active .nav-link,
.modern-navbar .navbar-nav .nav-item.show .nav-link {
  color: #ff4b0e !important;
  background: transparent !important;
}

.navbar-main,
.navbar-primary {
  background-color: #fff !important;
}

@media (max-width: 1199.98px) {
  .logo-img {
    height: 25px !important;
    width: auto !important;
  }
}

.main-header .dropdown-item.text-danger {
  color: #dc3545 !important;
}

.main-header .dropdown-item.text-danger:hover {
  background-color: #ffeef3 !important;
  color: #b02a37 !important;
}

.main-header .dropdown-menu-right {
  right: 0 !important;
  left: auto !important;
  transform: none !important;
  top: 100% !important;
  margin-top: 10px !important;
}

@media (max-width: 1199.98px) {
  .actions-wrapper,
  .actions-wrapper .dropdown {
    position: static !important;
  }
  .main-header .dropdown-menu-right[aria-labelledby="accountNotifications"] {
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
  }
}

[aria-labelledby="accountNotifications"] {
  width: 500px !important;
  max-width: 90vw !important;
}

.client-alert-item .small {
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-side-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  transition: right 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.mobile-side-panel.active {
  right: 0;
}

.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #f1f1f4;
}

.mobile-panel-title {
  font-size: 18px;
  font-weight: 700;
  color: #181c32;
}

.mobile-panel-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #a1a5b7;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.mobile-panel-close:hover {
  color: #ff4b0e;
}

.mobile-panel-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.mobile-panel-search {
  margin-bottom: 25px;
}
.mobile-panel-search .form-control {
  background-color: #f9f9f9;
  border: 1px solid #eef0f2;
  height: 45px;
}
.mobile-panel-search .btn {
  background: #ff4b0e;
  color: #fff;
  border-radius: 0 0.475rem 0.475rem 0;
}

.mobile-side-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-side-nav li {
  border-bottom: 1px solid #f4f6f8;
}

.mobile-side-nav li a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: #5e6278;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-side-nav li a:hover {
  color: #ff4b0e;
  padding-left: 5px;
}

.mobile-side-nav i,
.mobile-side-nav svg,
.mobile-side-nav .fas,
.mobile-side-nav .far,
.mobile-side-nav .fab {
  display: none !important;
}

.mobile-side-nav .dropdown-menu {
  position: static;
  float: none;
  border: none;
  box-shadow: none;
  background: #fcfcfc;
  padding-left: 15px;
  margin-top: 0;
}

.mobile-auth-buttons {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.home-hero-section {
  padding: 20px 0 40px;
  text-align: center;
}

.home-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #181c32;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-section-title i {
  color: #ff4b0e;
  font-size: 1.2rem;
  background: rgba(255, 75, 14, 0.1);
  padding: 8px;
  border-radius: 8px;
}

.dashboard-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #eff2f5;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 0 0 transparent;
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: #ff4b0e;
  text-decoration: none;
}

.dashboard-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.dashboard-card:hover .dashboard-icon-box {
  transform: scale(1.1);
}

.icon-soft-primary {
  background: #e9f3ff;
  color: #1b84ff;
}
.icon-soft-success {
  background: #dfffea;
  color: #17c653;
}
.icon-soft-warning {
  background: #fff8dd;
  color: #f6c000;
}
.icon-soft-danger {
  background: #ffeef3;
  color: #f8285a;
}
.icon-soft-info {
  background: #f8f5ff;
  color: #7239ea;
}
.icon-soft-dark {
  background: #f9f9f9;
  color: #181c32;
}
.icon-soft-orange {
  background: #fff0e6;
  color: #ff4b0e;
}

.dashboard-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #181c32;
  margin-bottom: 8px;
}

.dashboard-card-desc {
  font-size: 14px;
  color: #a1a5b7;
  font-weight: 500;
  line-height: 1.5;
}

.dashboard-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #e4e6ef;
  transition: all 0.3s ease;
}

.dashboard-card:hover .dashboard-arrow {
  color: #ff4b0e;
  transform: translateX(3px);
}

.dashboard-card {
  flex-direction: row !important;
  align-items: center !important;
  background-color: #f4f6f8;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 20px 25px;
  min-height: 100px;
  transition: all 0.3s ease;
  box-shadow: none;
}

.dashboard-card:hover {
  background-color: #ffffff;
  border-color: #e4e6ef;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dashboard-icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 10px;
  margin-bottom: 0 !important;
  margin-right: 20px;
  font-size: 22px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.icon-soft-primary i {
  color: #009ef7;
}
.icon-soft-success i {
  color: #50cd89;
}
.icon-soft-warning i {
  color: #ffc700;
}
.icon-soft-danger i {
  color: #f1416c;
}
.icon-soft-info i {
  color: #7239ea;
}
.icon-soft-dark i {
  color: #181c32;
}
.icon-soft-orange i {
  color: #ff4b0e;
}

.dashboard-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  a {
    text-align: left;
  }
}

.dashboard-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #181c32;
  margin-bottom: 4px;
  transition: color 0.3s;
  text-align: left;
}

.dashboard-card-desc {
  font-size: 13px;
  color: #a1a5b7;
  font-weight: 500;
  margin: 0;
  text-align: left;
}

.dashboard-card:hover .dashboard-card-title {
  color: #ff4b0e;
}

.dashboard-arrow {
  display: none !important;
}

.domain-hero-card {
  background: #f8f8f8;
  padding: 60px 40px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.domain-hero-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 75, 14, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.domain-hero-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #212121;
}

.domain-hero-subtitle {
  font-size: 16px;
  color: #6b6b6b;
  margin-bottom: 40px;
  font-weight: 500;
}

.domain-search-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.domain-search-wrapper .form-control {
  border: none;
  background: transparent;
  height: 50px;
  font-size: 16px;
  padding: 0 20px;
  color: #181c32;
  font-weight: 500;
  box-shadow: none !important;
}

.domain-search-wrapper .form-control::placeholder {
  color: #a1a5b7;
}

.domain-btns-group {
  display: flex;
  gap: 10px;
  padding-right: 5px;
}

.btn-domain-action {
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.btn-domain-register {
  background-color: #ff4b0e;
  color: #ffffff;
}

.btn-domain-register:hover {
  background-color: #e03e00;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 75, 14, 0.3);
}

.btn-domain-transfer {
  background-color: #17c653;
  color: #fff;
}

.btn-domain-transfer:hover {
  background-color: #04b440;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .domain-search-wrapper {
    flex-direction: column;
    padding: 15px;
  }
  .domain-search-wrapper .form-control {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
  }
  .domain-btns-group {
    width: 100%;
    justify-content: center;
  }
  .btn-domain-action {
    flex: 1;
  }
}

.announcements-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.announcement-item {
  background-color: #ffffff;
  border: 1px solid #eff2f5;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
  position: relative;
}

.announcement-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: #ff4b0e;
  transform: translateY(-2px);
}

.announcement-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.announcement-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f9f9f9;
  color: #7e8299;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
}

.announcement-date i {
  color: #ff4b0e;
}

.announcement-title {
  font-size: 20px;
  font-weight: 700;
  color: #181c32;
  margin-bottom: 15px;
  display: block;
  text-decoration: none;
  transition: color 0.2s;
}

.announcement-title:hover {
  color: #ff4b0e;
  text-decoration: none;
}

.announcement-content {
  color: #5e6278;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.announcement-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px dashed #eff2f5;
  padding-top: 20px;
}

.btn-read-more {
  background-color: #fff0e6;
  color: #ff4b0e;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-read-more:hover {
  background-color: #ff4b0e;
  color: #ffffff;
  text-decoration: none;
}

.btn-edit-announcement {
  background-color: #f9f9f9;
  color: #7e8299;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  margin-left: 10px;
}
.btn-edit-announcement:hover {
  background-color: #eff2f5;
  color: #181c32;
}

.pagination {
  display: flex;
  gap: 6px;
  border: none;
}

.pagination .page-item .page-link {
  border: none;
  background-color: #f9f9f9;
  color: #7e8299;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 15px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
}

.pagination .page-item.active .page-link {
  background-color: #fff0e6 !important;
  color: #ff4b0e !important;
  box-shadow: none;
}

.pagination .page-item:hover:not(.active):not(.disabled) .page-link {
  background-color: #eff2f5;
  color: #181c32;
}

.pagination .page-item.disabled .page-link {
  background-color: #fcfcfc;
  color: #d8d8d9;
  opacity: 0.6;
}

.kb-hero-search {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
  border: 1px solid #eff2f5;
  margin-bottom: 30px;
}

.kb-search-input-group .form-control {
  background-color: #f9f9f9;
  border: 1px solid transparent;
  height: 50px !important;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #5e6278;
  border-radius: 10px 0 0 10px;
}

.kb-search-input-group .form-control:focus {
  background-color: #fff;
  border-color: #ff4b0e;
  box-shadow: none;
}

.kb-search-input-group .btn-search {
  background-color: #ff4b0e;
  color: #fff;
  border-radius: 0 10px 10px 0;
  padding: 0 25px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.kb-search-input-group .btn-search:hover {
  background-color: #e03e00;
  color: #fff;
}

.kb-category-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #eff2f5;
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.kb-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: #ff4b0e;
  text-decoration: none;
}

.kb-category-icon {
  width: 50px;
  height: 50px;
  background-color: #fff0e6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 24px;
  color: #ff4b0e;
  transition: all 0.3s ease;
}

.kb-category-card:hover .kb-category-icon {
  background-color: #ff4b0e;
  color: #fff;
}

.kb-category-title {
  font-size: 16px;
  font-weight: 700;
  color: #181c32;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kb-category-count {
  background-color: #f9f9f9;
  color: #7e8299;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.kb-category-desc {
  font-size: 13px;
  color: #a1a5b7;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.kb-article-list-container {
  background: #fff;
  border: 1px solid #eff2f5;
  border-radius: 12px;
  padding: 10px;
}

.kb-article-item {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  border-bottom: 1px dashed #eff2f5;
  transition: all 0.2s ease;
  border-radius: 8px;
  text-decoration: none;
}

.kb-article-item:last-child {
  border-bottom: none;
}

.kb-article-item:hover {
  background-color: #fcfcfc;
  text-decoration: none;
}

.kb-article-icon {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a5b7;
  margin-right: 15px;
  font-size: 18px;
  transition: all 0.2s;
}

.kb-article-item:hover .kb-article-icon {
  background-color: #fff0e6;
  color: #ff4b0e;
}

.kb-article-content {
  flex: 1;
}

.kb-article-title {
  font-size: 15px;
  font-weight: 600;
  color: #181c32;
  margin-bottom: 4px;
  display: block;
  transition: color 0.2s;
}

.kb-article-item:hover .kb-article-title {
  color: #ff4b0e;
}

.kb-article-snippet {
  font-size: 13px;
  color: #7e8299;
  line-height: 1.4;
  margin: 0;
}

.kb-detail-card {
  background: #fff;
  border: 1px solid #eff2f5;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.kb-detail-header {
  border-bottom: 1px solid #eff2f5;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.kb-detail-title {
  font-size: 24px;
  font-weight: 700;
  color: #181c32;
  margin-bottom: 15px;
}

.kb-meta-list {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.kb-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #7e8299;
  background: #f9f9f9;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
}

.kb-meta-item i {
  color: #a1a5b7;
}

.kb-content-body {
  color: #5e6278;
  font-size: 15px;
  line-height: 1.7;
}

.kb-vote-box {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  margin-top: 40px;
  border: 1px dashed #dbdfe9;
}

.kb-vote-title {
  font-size: 16px;
  font-weight: 600;
  color: #181c32;
  margin-bottom: 20px;
}

.btn-kb-vote {
  background-color: #fff;
  border: 1px solid #eff2f5;
  color: #5e6278;
  padding: 10px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  margin: 0 5px;
  transition: all 0.2s;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
}

.btn-kb-vote:hover {
  border-color: #ff4b0e;
  color: #ff4b0e;
  background-color: #fff0e6;
}

.btn-kb-vote i {
  margin-right: 6px;
}

.alert {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.alert .alert-content {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.alert .alert-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: inherit;
}

.alert ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.alert-info {
  background-color: #e9f3ff;
  border-color: #e9f3ff;
  color: #1b84ff;
}

.alert-success {
  background-color: #dfffea;
  border-color: #dfffea;
  color: #17c653;
}

.alert-warning {
  background-color: #fff8dd;
  border-color: #fff8dd;
  color: #d2a502;
}

.alert-danger {
  background-color: #ffeef3;
  border-color: #ffeef3;
  color: #f8285a;
}

.alert a:not(.btn) {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}

.alert a:not(.btn):hover {
  text-decoration: none;
}

.download-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  border-bottom: 1px dashed #eff2f5;
  transition: all 0.2s ease;
  background-color: #fff;
  text-decoration: none;
  border-radius: 8px;
}

.download-item:hover {
  background-color: #fcfcfc;
  text-decoration: none;
}

.download-item:last-child {
  border-bottom: none;
}

.download-icon {
  min-width: 50px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 24px;
  color: #a1a5b7;
  transition: all 0.3s ease;
}

.download-item:hover .download-icon {
  background-color: #fff0e6;
  color: #ff4b0e;
}

.download-content {
  flex: 1;
}

.download-title {
  font-size: 16px;
  font-weight: 700;
  color: #181c32;
  margin-bottom: 5px;
  display: block;
  transition: color 0.2s;
}

.download-item:hover .download-title {
  color: #ff4b0e;
}

.download-meta {
  font-size: 13px;
  color: #7e8299;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.download-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.download-description {
  color: #a1a5b7;
  font-size: 13px;
  margin-top: 5px;
  line-height: 1.5;
}

.download-denied-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
  border: 1px solid #eff2f5;
  padding: 40px;
  text-align: center;
}

.download-denied-icon {
  width: 80px;
  height: 80px;
  background-color: #ffeef3;
  color: #f8285a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 25px;
}

.download-denied-title {
  font-size: 20px;
  font-weight: 700;
  color: #181c32;
  margin-bottom: 15px;
}

.download-denied-text {
  color: #7e8299;
  font-size: 15px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ticket-dept-card {
  background-color: #fff;
  border: 1px solid #eff2f5;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
}

.ticket-dept-item {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px dashed #eff2f5;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.2s ease;
  background-color: #fcfcfc;
  text-decoration: none;
}

.ticket-dept-item:hover {
  background-color: #fff0e6;
  border-color: #ff4b0e;
  text-decoration: none;
}

.ticket-dept-icon {
  min-width: 50px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #a1a5b7;
  transition: all 0.2s;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
}

.ticket-dept-item:hover .ticket-dept-icon {
  color: #ff4b0e;
}

.ticket-dept-content {
  flex: 1;
}

.ticket-dept-name {
  font-size: 16px;
  font-weight: 700;
  color: #181c32;
  margin-bottom: 4px;
  display: block;
}

.ticket-dept-desc {
  font-size: 13px;
  color: #7e8299;
  margin: 0;
}

.ticket-submit-card {
  background-color: #fff;
  border: 1px solid #eff2f5;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.ticket-submit-header {
  border-bottom: 1px solid #eff2f5;
  margin-bottom: 25px;
  padding-bottom: 15px;
}

.ticket-submit-title {
  font-size: 20px;
  font-weight: 700;
  color: #181c32;
}

.ticket-form-label {
  font-weight: 600;
  color: #3f4254;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.kb-suggestion-card {
  background-color: #fff8dd;
  border: 1px dashed #f6c000;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
}

.kb-suggestion-title {
  font-size: 15px;
  font-weight: 700;
  color: #d2a502;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.kb-suggestion-list .list-group-item {
  background: transparent;
  border: none;
  border-bottom: 1px dashed rgba(210, 165, 2, 0.2);
  padding: 10px 0;
}

.kb-suggestion-list .list-group-item a {
  color: #5e6278;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.kb-suggestion-list .list-group-item a:hover {
  color: #d2a502;
}

.kb-suggestion-list .list-group-item:last-child {
  border-bottom: none;
}

.ticket-success-card {
  text-align: center;
  padding: 50px 30px;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #eff2f5;
}

.ticket-success-icon {
  width: 80px;
  height: 80px;
  background-color: #dfffea;
  color: #17c653;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 25px;
}

.ticket-number-badge {
  background-color: #f1f1f4;
  color: #181c32;
  padding: 5px 15px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  margin-top: 10px;
}

.ticket-chat-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

.ticket-message {
  display: flex;
  gap: 20px;
  max-width: 90%;
}

.ticket-message.user-message {
  align-self: flex-start;
  flex-direction: row;
}

.ticket-message.staff-message {
  align-self: flex-end;
  flex-direction: row-reverse;
  text-align: right;
}

.message-avatar {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f3f6f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #181c32;
  font-size: 18px;
  text-transform: uppercase;
}

.staff-message .message-avatar {
  background-color: #fff0e6;
  color: #ff4b0e;
}

.message-bubble {
  position: relative;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eff2f5;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
  color: #5e6278;
  font-size: 15px;
  line-height: 1.6;
}

.user-message .message-bubble {
  border-top-left-radius: 0;
}

.staff-message .message-bubble {
  background-color: #fff8f5;
  border-color: #ffeadb;
  border-top-right-radius: 0;
  color: #181c32;
  text-align: left;
}

.message-meta {
  margin-bottom: 10px;
  font-size: 13px;
  color: #a1a5b7;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.staff-message .message-meta {
  justify-content: flex-end;
}

.message-author {
  font-weight: 700;
  color: #181c32;
  font-size: 14px;
}

.staff-badge {
  background-color: #ff4b0e;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 5px;
}

.ticket-attachment-box {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #e4e6ef;
}

.attachment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.attachment-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #eff2f5;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  color: #5e6278;
  text-decoration: none;
  transition: all 0.2s;
}

.staff-message .attachment-item {
  background-color: rgba(255, 255, 255, 0.6);
}

.attachment-item:hover {
  border-color: #ff4b0e;
  color: #ff4b0e;
  text-decoration: none;
}

.attachment-item i {
  margin-right: 8px;
  font-size: 16px;
}

.ticket-reply-card {
  background-color: #fff;
  border: 1px solid #eff2f5;
  border-radius: 12px;
  padding: 30px;
}

.ticket-rating {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #ffd6b3;
}

.rating-stars span.star {
  font-size: 20px;
  cursor: pointer;
  color: #e4e6ef;
}

.rating-stars span.star.active,
.rating-stars span.star:hover {
  color: #f6c000;
}

.ticket-hero-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #eff2f5;
  padding: 0;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}

.ticket-hero-top {
  background: linear-gradient(to right, #fff0e6, #fff);
  padding: 25px 30px;
  border-bottom: 1px solid #ffeadb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.ticket-id-badge {
  background-color: #fff;
  color: #ff4b0e;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(255, 75, 14, 0.1);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ticket-hero-actions {
  display: flex;
  gap: 10px;
}

.ticket-hero-body {
  padding: 30px;
}

.ticket-subject {
  font-size: 24px;
  font-weight: 700;
  color: #181c32;
  margin-bottom: 20px;
  line-height: 1.3;
}

#tableTicketsList .ticket-subject {
  font-size: 13px;
}

.ticket-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.ticket-info-item {
  display: flex;
  flex-direction: column;
}

.ticket-info-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #a1a5b7;
  font-weight: 600;
  margin-bottom: 6px;
}

.ticket-info-value {
  font-size: 15px;
  font-weight: 600;
  color: #5e6278;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-status {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-status.open {
  background-color: #dfffea;
  color: #17c653;
}
.badge-status.answered {
  background-color: #e9f3ff;
  color: #1b84ff;
}
.badge-status.customer-reply {
  background-color: #fff8dd;
  color: #f6c000;
}
.badge-status.closed {
  background-color: #ffeef3;
  color: #f8285a;
}

.ticket-attachment-container {
  background-color: #f9f9f9;
  border: 2px dashed #e4e6ef;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.ticket-attachment-container:hover {
  border-color: #ff4b0e;
  background-color: #fff0e6;
}

.upload-drop-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.upload-drop-zone i {
  font-size: 42px;
  color: #a1a5b7;
  transition: all 0.3s ease;
}

.ticket-attachment-container:hover .upload-drop-zone i {
  color: #ff4b0e;
  transform: translateY(-5px);
}

.upload-text {
  font-size: 15px;
  font-weight: 600;
  color: #3f4254;
}

.upload-hint {
  font-size: 13px;
  color: #7e8299;
}

.ticket-attachment-container .custom-file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.ticket-attachment-container .custom-file-label {
  display: none !important;
}

.file-upload-list {
  margin-top: 15px;
}

.file-upload-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #eff2f5;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 13px;
}

.btn-add-more {
  background-color: #fff;
  border: 1px solid #e4e6ef;
  color: #3f4254;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  margin-top: 15px;
  transition: all 0.2s;
}

.btn-add-more:hover {
  border-color: #ff4b0e;
  color: #ff4b0e;
  background-color: #fff0e6;
}

.client-home-cards .list-group {
  max-height: 250px;
}

.service-header {
  background: #fff;
  border: 1px solid #f1f1f4;
  border-radius: 12px;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background: #fff0e6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4b0e;
  flex-shrink: 0;
}

.service-icon-box i {
  font-size: 28px;
}

.nav-tabs-line {
  border-bottom: 1px solid #eff2f5;
}

.nav-tabs-line .nav-item {
  margin-bottom: -1px;
}

.nav-tabs-line .nav-link {
  border: 0;
  border-bottom: 2px solid transparent;
  color: #7e8299;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

.nav-tabs-line .nav-link:hover {
  color: #ff4b0e;
}

.nav-tabs-line .nav-link.active {
  color: #ff4b0e;
  border-bottom: 2px solid #ff4b0e;
  background: transparent;
}

.nav-tabs-line .nav-link i {
  color: #b5b5c3;
  margin-right: 8px;
}
.nav-tabs-line .nav-link.active i {
  color: #ff4b0e;
}

.product-details-tab-container {
  padding-top: 20px;
  border-top: 1px solid #f1f1f4;
  margin-top: 20px;
}
.responsive-tabs-sm {
  border-bottom: 0;
  margin-bottom: 15px;
  gap: 5px;
  flex-wrap: wrap;
}
.responsive-tabs-sm .nav-link {
  border: 1px solid #f1f1f4;
  border-radius: 8px;
  color: #5e6278;
  background: #fff;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 500;
}
.responsive-tabs-sm .nav-link:hover {
  background: #f9f9f9;
}
.responsive-tabs-sm .nav-link.active {
  background: #fff0e6;
  color: #ff4b0e;
  border-color: #fff0e6;
}
.responsive-tabs-sm .nav-link i {
  color: #a1a5b7;
  margin-right: 5px;
}
.responsive-tabs-sm .nav-link.active i {
  color: #ff4b0e;
}

.module-buttons {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.module-buttons .btn,
.module-buttons input[type="submit"],
.module-buttons button {
  padding: 0.25rem 0.75rem !important;
  font-size: 0.875rem !important;
  border-radius: 0.425rem !important;
  font-weight: 500 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  height: 31px !important;
  margin: 0 !important;
}

#sitejetPromoPanel,
.sitejet-promo-panel,
[id*="sitejet"] {
  display: none !important;
}

.product-details-tab-container {
  display: none !important;
}

.btn-group-sm > .module-buttons {
  display: contents;
}

.btn-group-sm > .module-buttons form {
  margin: 0;
  display: contents;
}

#openChangePwModal {
  margin-top: 5px;
}

.mass-pay-container {
  max-width: 900px;
  margin: 0 auto;
}

.invoice-summary-card {
  border: 1px solid #f1f1f4;
  border-radius: 12px;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
  overflow: hidden;
}

.invoice-summary-header {
  background-color: #fff;
  padding: 20px;
  border-bottom: 1px solid #f1f1f4;
}

.invoice-item-group {
  border-bottom: 1px solid #f1f1f4;
}

.invoice-item-header {
  background-color: #f1f1f4;
  padding: 10px 20px;
  font-weight: 700;
  color: #181c32;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.invoice-item-row {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #eff2f5;
  background-color: #fff;
  transition: background-color 0.2s;
}

.invoice-item-row:last-child {
  border-bottom: none;
}

.invoice-item-row:hover {
  background-color: #fcfcfc;
}

.invoice-item-desc {
  color: #5e6278;
  font-size: 0.9rem;
  padding-right: 15px;
}

.invoice-item-amount {
  font-weight: 600;
  color: #181c32;
  white-space: nowrap;
}

.mass-pay-totals {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #f1f1f4;
  margin-bottom: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
  color: #5e6278;
}

.total-row.grand-total {
  border-top: 1px solid #eff2f5;
  margin-top: 10px;
  padding-top: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #181c32;
}

.total-row.grand-total .amount {
  color: #ff4b0e;
}

.payment-gateway-card {
  background-color: #fff;
  border: 1px solid #f1f1f4;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
}

.payment-gateway-select {
  max-width: 400px;
  margin: 0 auto 20px;
}

.client-details-form .card {
  border: 1px solid #f1f1f4;
  border-radius: 12px;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
  overflow: hidden;
}

.client-details-form .card-header {
  background-color: #fff;
  padding: 20px 25px;
  border-bottom: 1px solid #f1f1f4;
}

.client-details-form .card-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #181c32;
  display: flex;
  align-items: center;
}

.client-details-form .card-header h3 i {
  color: #ff4b0e;
  margin-right: 10px;
  font-size: 1.2rem;
  background: #fff0e6;
  padding: 8px;
  border-radius: 8px;
}

.client-details-form .card-body {
  padding: 25px;
}

.client-details-form .form-group {
  margin-bottom: 1.25rem;
}

.client-details-form label {
  font-weight: 600;
  color: #3f4254;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.client-details-form .form-control,
.client-details-form .custom-select {
  border-color: #e4e6ef;
  height: calc(1.5em + 1.3rem + 2px);
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #5e6278;
  background-color: #ffffff;
}

.client-details-form .form-control:focus,
.client-details-form .custom-select:focus {
  border-color: #ff4b0e;
  box-shadow: 0 0 0 0.2rem rgba(255, 75, 14, 0.15);
}

.client-details-form .form-control:disabled,
.client-details-form .form-control[readonly] {
  background-color: #f5f8fa;
  border-color: #e4e6ef;
  color: #a1a5b7;
}

.prefs-box {
  background-color: #f9f9f9;
  border: 1px solid #f1f1f4;
  border-radius: 8px;
  padding: 15px;
  transition: all 0.2s;
}

.prefs-box:hover {
  background-color: #fff;
  border-color: #ff4b0e;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.prefs-check-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-weight: 500 !important;
  margin: 0;
  width: 100%;
}

.prefs-check-input {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin-top: 3px;
}

.account-user-management-toggle-button label {
  border: 1px solid #6c757d;
}

.user-management-card {
  border: 1px solid #f1f1f4;
  border-radius: 12px;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
}

.user-management-header {
  background-color: #fff;
  padding: 20px 25px;
  border-bottom: 1px solid #f1f1f4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-management-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #181c32;
  display: flex;
  align-items: center;
}

.user-management-title i {
  color: #ff4b0e;
  margin-right: 10px;
  font-size: 1.2rem;
  background: #fff0e6;
  padding: 8px;
  border-radius: 8px;
}

.user-list-container {
  padding: 0;
}

.user-item-row {
  padding: 20px 25px;
  border-bottom: 1px dashed #eff2f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
}

.user-item-row:last-child {
  border-bottom: none;
}

.user-item-row:hover {
  background-color: #fcfcfc;
}

.user-info {
  display: flex;
  align-items: center;
}

.user-avatar-placeholder {
  width: 45px;
  height: 45px;
  background-color: #f5f8fa;
  color: #7e8299;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 15px;
}

.user-details h5 {
  margin: 0 0 5px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #181c32;
}

.user-meta {
  font-size: 0.85rem;
  color: #a1a5b7;
}

.user-badge {
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 10px;
}

.user-badge.owner {
  background-color: #e8fff3;
  color: #50cd89;
}

.user-badge.pending {
  background-color: #fff8dd;
  color: #ffc700;
}

.invite-section {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #f1f1f4;
}

.permission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  margin-top: 15px;
}

.permission-item {
  display: flex;
  align-items: flex-start;
}

.permission-item input {
  margin-top: 4px;
  margin-right: 8px;
}

#invitePermissions.w-hidden {
  display: none !important;
}

.payment-method-card {
  border: 1px solid #f1f1f4;
  border-radius: 12px;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
  overflow: hidden;
}

.payment-method-header {
  background-color: #fff;
  padding: 20px 25px;
  border-bottom: 1px solid #f1f1f4;
}

.payment-method-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #181c32;
  display: flex;
  align-items: center;
}

.payment-method-header h3 i {
  color: #ff4b0e;
  margin-right: 10px;
  font-size: 1.2rem;
  background: #fff0e6;
  padding: 8px;
  border-radius: 8px;
}

.payment-method-body {
  padding: 25px;
}

.cc-visual-container {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px dashed #e4e6ef;
}

.cc-input-group {
  position: relative;
}

.cc-input-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #a1a5b7;
  pointer-events: none;
}

.payment-type-selector {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.payment-type-option {
  flex: 1;
  min-width: 150px;
}

.payment-type-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 1px solid #e4e6ef;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  height: 100%;
  text-align: center;
  font-weight: 600;
  color: #5e6278;
}

.payment-type-option input[type="radio"] {
  display: none;
}

.payment-type-option input[type="radio"]:checked + label {
  border-color: #ff4b0e;
  background-color: #fff0e6;
  color: #ff4b0e;
}

.payment-type-option i {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.form-control-lg-modern {
  height: 50px;
  font-size: 1rem;
  border-radius: 8px;
}

.billing-address-box {
  border: 1px solid #e4e6ef;
  border-radius: 8px;
  padding: 15px;
  background: #fff;
}

.contact-selector-card {
  background-color: #fff;
  border: 1px solid #f1f1f4;
  border-radius: 12px;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-selector-label {
  font-weight: 600;
  color: #181c32;
  margin: 0;
  white-space: nowrap;
}

.contact-selector-input {
  flex-grow: 1;
  min-width: 250px;
}

.contact-details-card {
  border: 1px solid #f1f1f4;
  border-radius: 12px;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
  overflow: hidden;
}

.contact-details-header {
  background-color: #fff;
  padding: 20px 25px;
  border-bottom: 1px solid #f1f1f4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-details-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #181c32;
  display: flex;
  align-items: center;
}

.contact-details-title i {
  color: #ff4b0e;
  margin-right: 10px;
  font-size: 1.2rem;
  background: #fff0e6;
  padding: 8px;
  border-radius: 8px;
}

.contact-details-body {
  padding: 25px;
}

.email-prefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

.security-card {
  border: 1px solid #f1f1f4;
  border-radius: 12px;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
  overflow: hidden;
  height: 100%;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.security-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.security-card-header {
  background-color: #fff;
  padding: 20px 25px;
  border-bottom: 1px solid #f1f1f4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.security-card-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #181c32;
  display: flex;
  align-items: center;
}

.security-card-title i {
  color: #ff4b0e;
  margin-right: 10px;
  font-size: 1.2rem;
  background: #fff0e6;
  padding: 8px;
  border-radius: 8px;
}

.security-card-body {
  padding: 25px;
}

.security-status-badge {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.security-status-badge.enabled {
  background-color: #e8fff3;
  color: #50cd89;
}

.security-status-badge.disabled {
  background-color: #fff5f8;
  color: #f1416c;
}

.security-feature-icon {
  width: 60px;
  height: 60px;
  background-color: #f5f8fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #7e8299;
}

.security-feature-icon.active {
  background-color: #e8fff3;
  color: #50cd89;
}

.security-actions {
  margin-top: 20px;
  border-top: 1px dashed #eff2f5;
  padding-top: 20px;
}

.verification-banner.email-verification {
  background-color: #fff8dd;
  border: 1px solid #f1f1f4;
  border-radius: 12px;
  color: #d2a502;
  margin-bottom: 25px;
  position: relative;
  padding: 0 !important;
}

.verification-banner .icon-wrapper {
  width: 40px;
  height: 40px;
  background: rgba(210, 165, 2, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.verification-banner .banner-content h6 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: #8e7310;
}

.verification-banner #btnResendVerificationEmail {
  background-color: #d2a502 !important;
  color: #fff !important;
  border: none !important;
  padding: 6px 15px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  font-size: 0.85rem !important;
  width: auto !important;
  transition: all 0.2s;
}

.verification-banner #btnResendVerificationEmail:hover {
  background-color: #b08402 !important;
  transform: translateY(-1px);
}

.btn-close-minimal {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d2a502;
  opacity: 0.5;
  transition: all 0.2s;
  border-radius: 50%;
  background: transparent;
  border: none;
  padding: 0;
}

.btn-close-minimal:hover {
  opacity: 1;
  background: rgba(210, 165, 2, 0.1);
  color: #d2a502;
}

.btn-close-minimal i {
  font-size: 16px !important;
  padding: 0 !important;
}

.domain-overview-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.domain-header-hero {
  border: 1px solid #f1f1f4;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.domain-header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.domain-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff4b0e 0%, #ff6b35 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 25px rgba(255, 75, 14, 0.25);
}

.domain-icon-wrapper i {
  font-size: 28px;
  color: #fff;
}

.domain-header-info {
  flex: 1;
  min-width: 200px;
}

.domain-header-info h2 {
  font-size: 24px;
  font-weight: 700;
  color: #181c32;
  margin: 0 0 8px 0;
  word-break: break-all;
}

.domain-header-info h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.domain-header-info h2 a:hover {
  color: #ff4b0e;
}

.domain-status-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.domain-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.domain-status-badge.active,
.domain-status-badge.aktif {
  background: #dfffea;
  color: #17c653;
}

.domain-status-badge.pending,
.domain-status-badge.beklemede,
.domain-status-badge.pending-transfer,
.domain-status-badge.transfer-bekliyor,
.domain-status-badge.pending-registration,
.domain-status-badge.kayıt-bekliyor {
  background: #fff8dd;
  color: #f6c000;
}

.domain-status-badge.expired,
.domain-status-badge.süresi-dolmuş,
.domain-status-badge.sona-ermiş {
  background: #ffeef3;
  color: #f8285a;
}

.domain-status-badge.cancelled,
.domain-status-badge.iptal-edildi,
.domain-status-badge.suspended,
.domain-status-badge.askıya-alındı,
.domain-status-badge.askıya-alınmış {
  background: #ffeef3;
  color: #f8285a;
}

.domain-status-badge.grace,
.domain-status-badge.redemption {
  background: #fff8dd;
  color: #f6c000;
}

.domain-status-badge.transferred-away,
.domain-status-badge.transfer-edildi {
  background: #f1f1f4;
  color: #78829d;
}

.domain-status-badge i {
  font-size: 10px;
}

.domain-lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.domain-lock-badge.locked {
  background: #e9f3ff;
  color: #1b84ff;
}

.domain-lock-badge.unlocked {
  background: #ffeef3;
  color: #f8285a;
}

.domain-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.domain-info-card {
  background: #fff;
  border: 1px solid #f1f1f4;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.domain-info-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.domain-info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #f1f1f4;
}

.domain-info-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.domain-info-card-icon.dates {
  background: #e9f3ff;
  color: #1b84ff;
}

.domain-info-card-icon.billing {
  background: #dfffea;
  color: #17c653;
}

.domain-info-card-icon.ssl {
  background: #f8f5ff;
  color: #7239ea;
}

.domain-info-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #181c32;
  margin: 0;
}

.domain-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.domain-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f9f9f9;
}

.domain-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.domain-info-label {
  font-size: 13px;
  color: #99a1b7;
  font-weight: 500;
}

.domain-info-value {
  font-size: 14px;
  font-weight: 600;
  color: #181c32;
  text-align: right;
}

.ssl-status-card {
  border: 1px solid #e8e0f5;
}

.ssl-status-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
}

.ssl-status-indicator img {
  width: 24px;
  height: 24px;
}

.ssl-status-indicator span {
  font-size: 14px;
  font-weight: 600;
  color: #181c32;
}

.domain-quick-actions {
  background: #fff;
  border: 1px solid #f1f1f4;
  border-radius: 12px;
  padding: 25px;
}

.domain-quick-actions-title {
  font-size: 16px;
  font-weight: 700;
  color: #181c32;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.domain-quick-actions-title i {
  color: #ff4b0e;
  font-size: 18px;
}

.domain-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.domain-action-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: #f9f9fb;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.domain-action-item:hover {
  background: #fff0e6;
  border-color: #ff4b0e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 75, 14, 0.1);
  text-decoration: none;
}

.domain-action-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #99a1b7;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.domain-action-item:hover .domain-action-icon {
  background: #ff4b0e;
  color: #fff;
}

.domain-action-content {
  flex: 1;
}

.domain-action-title {
  font-size: 14px;
  font-weight: 600;
  color: #181c32;
  margin: 0 0 3px 0;
  transition: color 0.2s;
}

.domain-action-item:hover .domain-action-title {
  color: #ff4b0e;
}

.domain-action-desc {
  font-size: 12px;
  color: #99a1b7;
  margin: 0;
}

.domain-action-arrow {
  color: #d1d5db;
  font-size: 14px;
  transition: all 0.3s ease;
}

.domain-action-item:hover .domain-action-arrow {
  color: #ff4b0e;
  transform: translateX(3px);
}

.domain-module-output {
  background: #fff;
  border: 1px solid #f1f1f4;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.domain-module-output .modulebutton,
.domain-module-output .btn {
  margin: 5px;
}

@media (max-width: 768px) {
  .domain-header-hero {
    padding: 20px;
  }

  .domain-header-content {
    flex-direction: column;
    text-align: center;
  }

  .domain-header-info {
    text-align: center;
  }

  .domain-status-row {
    justify-content: center;
  }

  .domain-header-info h2 {
    font-size: 20px;
  }

  .domain-info-grid {
    grid-template-columns: 1fr;
  }

  .domain-actions-grid {
    grid-template-columns: 1fr;
  }

  .domain-action-item {
    padding: 15px;
  }

  .domain-info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .domain-info-value {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .domain-icon-wrapper {
    width: 55px;
    height: 55px;
  }

  .domain-icon-wrapper i {
    font-size: 22px;
  }

  .domain-quick-actions {
    padding: 15px;
  }

  .domain-action-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.domain-alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 14px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.domain-alert::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.domain-alert-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.domain-alert-content {
  flex: 1;
  min-width: 0;
}

.domain-alert-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.domain-alert-message {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
  opacity: 0.9;
}

.domain-alert-action {
  flex-shrink: 0;
  align-self: center;
}

.domain-alert.alert-success {
  background: linear-gradient(135deg, #f0fff4 0%, #fff 100%);
  border-color: #c6f6d5;
}

.domain-alert.alert-success::before {
  background: #17c653;
}

.domain-alert.alert-success .domain-alert-icon {
  background: #dfffea;
  color: #17c653;
}

.domain-alert.alert-success .domain-alert-title {
  color: #0d7a32;
}

.domain-alert.alert-success .domain-alert-message {
  color: #276749;
}

.domain-alert.alert-danger,
.domain-alert.alert-error {
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  border-color: #fed7d7;
}

.domain-alert.alert-danger::before,
.domain-alert.alert-error::before {
  background: #f8285a;
}

.domain-alert.alert-danger .domain-alert-icon,
.domain-alert.alert-error .domain-alert-icon {
  background: #ffeef3;
  color: #f8285a;
}

.domain-alert.alert-danger .domain-alert-title,
.domain-alert.alert-error .domain-alert-title {
  color: #c53030;
}

.domain-alert.alert-danger .domain-alert-message,
.domain-alert.alert-error .domain-alert-message {
  color: #9b2c2c;
}

.domain-alert.alert-warning {
  background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
  border-color: #fef3c7;
}

.domain-alert.alert-warning::before {
  background: #f6c000;
}

.domain-alert.alert-warning .domain-alert-icon {
  background: #fff8dd;
  color: #f6c000;
}

.domain-alert.alert-warning .domain-alert-title {
  color: #92400e;
}

.domain-alert.alert-warning .domain-alert-message {
  color: #a16207;
}

.domain-alert.alert-info {
  background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
  border-color: #dbeafe;
}

.domain-alert.alert-info::before {
  background: #1b84ff;
}

.domain-alert.alert-info .domain-alert-icon {
  background: #e9f3ff;
  color: #1b84ff;
}

.domain-alert.alert-info .domain-alert-title {
  color: #1e40af;
}

.domain-alert.alert-info .domain-alert-message {
  color: #1d4ed8;
}

.domain-alert-invoice {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 14px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.domain-alert-invoice::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.domain-alert-invoice.unpaid {
  background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
  border: 1px solid #fef3c7;
}

.domain-alert-invoice.unpaid::before {
  background: #f6c000;
}

.domain-alert-invoice.overdue {
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  border: 1px solid #fed7d7;
}

.domain-alert-invoice.overdue::before {
  background: #f8285a;
}

.domain-alert-invoice .invoice-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.domain-alert-invoice.unpaid .invoice-icon {
  background: #fff8dd;
  color: #f6c000;
}

.domain-alert-invoice.overdue .invoice-icon {
  background: #ffeef3;
  color: #f8285a;
}

.domain-alert-invoice .invoice-content {
  flex: 1;
  min-width: 0;
}

.domain-alert-invoice .invoice-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.domain-alert-invoice.unpaid .invoice-title {
  color: #92400e;
}

.domain-alert-invoice.overdue .invoice-title {
  color: #c53030;
}

.domain-alert-invoice .invoice-message {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  opacity: 0.85;
}

.domain-alert-invoice.unpaid .invoice-message {
  color: #a16207;
}

.domain-alert-invoice.overdue .invoice-message {
  color: #9b2c2c;
}

.domain-alert-invoice .invoice-action .btn {
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.domain-alert-invoice.unpaid .invoice-action .btn {
  background: #f6c000;
  color: #fff;
  border: none;
}

.domain-alert-invoice.unpaid .invoice-action .btn:hover {
  background: #d4a500;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 192, 0, 0.3);
}

.domain-alert-invoice.overdue .invoice-action .btn {
  background: #f8285a;
  color: #fff;
  border: none;
}

.domain-alert-invoice.overdue .invoice-action .btn:hover {
  background: #d91a4a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(248, 40, 90, 0.3);
}

@media (max-width: 768px) {
  .domain-alert {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .domain-alert-icon {
    margin: 0 auto;
  }

  .domain-alert-invoice {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .domain-alert-invoice .invoice-icon {
    margin: 0 auto;
  }

  .domain-alert-invoice .invoice-action {
    width: 100%;
  }

  .domain-alert-invoice .invoice-action .btn {
    width: 100%;
    justify-content: center;
  }
}

.domain-autorenew-card {
  background: #fff;
  border: 1px solid #f1f1f4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.domain-autorenew-header {
  background: linear-gradient(135deg, #f9f9fb 0%, #fff 100%);
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid #f1f1f4;
}

.domain-autorenew-title {
  font-size: 22px;
  font-weight: 700;
  color: #181c32;
  margin: 0 0 10px 0;
}

.domain-autorenew-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.domain-autorenew-status.enabled {
  background: #dfffea;
  color: #17c653;
}

.domain-autorenew-status.disabled {
  background: #ffeef3;
  color: #f8285a;
}

.domain-autorenew-status i {
  font-size: 12px;
}

.domain-autorenew-body {
  padding: 30px;
}

.domain-autorenew-description {
  text-align: center;
  color: #78829d;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
  padding: 0 20px;
}

.domain-autorenew-info {
  background: #f9f9fb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
}

.domain-autorenew-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #e9ecef;
}

.domain-autorenew-info-item:last-child {
  border-bottom: none;
}

.domain-autorenew-info-item i {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #99a1b7;
  font-size: 16px;
  flex-shrink: 0;
}

.domain-autorenew-info-item span {
  color: #5e6278;
  font-size: 14px;
  font-weight: 500;
}

.domain-autorenew-action {
  text-align: center;
}

.domain-autorenew-action .btn {
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.domain-autorenew-action .btn:hover {
  transform: translateY(-3px);
}

.domain-autorenew-action .btn-enable {
  background: linear-gradient(135deg, #17c653 0%, #0d9e40 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(23, 198, 83, 0.3);
}

.domain-autorenew-action .btn-enable:hover {
  box-shadow: 0 8px 25px rgba(23, 198, 83, 0.4);
  color: #fff;
}

.domain-autorenew-action .btn-disable {
  background: linear-gradient(135deg, #f8285a 0%, #d91a4a 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(248, 40, 90, 0.3);
}

.domain-autorenew-action .btn-disable:hover {
  box-shadow: 0 8px 25px rgba(248, 40, 90, 0.4);
  color: #fff;
}

.domain-success-message {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f0fff4 0%, #fff 100%);
  border: 1px solid #c6f6d5;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.domain-success-message i {
  width: 40px;
  height: 40px;
  background: #dfffea;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #17c653;
  font-size: 18px;
  flex-shrink: 0;
}

.domain-success-message span {
  color: #276749;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 576px) {
  .domain-autorenew-header {
    padding: 25px 20px;
  }

  .domain-autorenew-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .domain-autorenew-title {
    font-size: 18px;
  }

  .domain-autorenew-body {
    padding: 20px;
  }

  .domain-autorenew-description {
    padding: 0;
  }

  .domain-autorenew-action .btn {
    width: 100%;
    justify-content: center;
  }
}

.domain-nameservers-card {
  background: #fff;
  border: 1px solid #f1f1f4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.domain-nameservers-header {
  background: linear-gradient(135deg, #f9f9fb 0%, #fff 100%);
  padding: 25px 30px;
  border-bottom: 1px solid #f1f1f4;
  display: flex;
  align-items: center;
  gap: 15px;
}

.domain-nameservers-header-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fff0e6 0%, #ffe4d6 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4b0e;
  font-size: 22px;
  flex-shrink: 0;
}

.domain-nameservers-header-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #181c32;
  margin: 0 0 4px 0;
}

.domain-nameservers-header-content p {
  font-size: 13px;
  color: #99a1b7;
  margin: 0;
}

.domain-nameservers-body {
  padding: 30px;
}

.domain-ns-choice-group {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.domain-ns-choice {
  flex: 1;
  position: relative;
}

.domain-ns-choice input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.domain-ns-choice-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: #f9f9fb;
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.domain-ns-choice input[type="radio"]:checked + .domain-ns-choice-label {
  background: #fff;
  border-color: #ff4b0e;
  box-shadow: 0 4px 15px rgba(255, 75, 14, 0.15);
}

.domain-ns-choice-icon {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #99a1b7;
  font-size: 18px;
  transition: all 0.3s ease;
}

.domain-ns-choice input[type="radio"]:checked + .domain-ns-choice-label .domain-ns-choice-icon {
  background: #fff0e6;
  color: #ff4b0e;
}

.domain-ns-choice-text {
  flex: 1;
}

.domain-ns-choice-title {
  font-size: 14px;
  font-weight: 600;
  color: #181c32;
  margin: 0 0 2px 0;
}

.domain-ns-choice-desc {
  font-size: 12px;
  color: #99a1b7;
  margin: 0;
}

.domain-ns-choice-check {
  width: 22px;
  height: 22px;
  border: 2px solid #e4e6ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.domain-ns-choice input[type="radio"]:checked + .domain-ns-choice-label .domain-ns-choice-check {
  background: #ff4b0e;
  border-color: #ff4b0e;
}

.domain-ns-choice input[type="radio"]:checked + .domain-ns-choice-label .domain-ns-choice-check::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.domain-ns-inputs {
  background: #f9f9fb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
}

.domain-ns-input-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.domain-ns-input-item:last-child {
  margin-bottom: 0;
}

.domain-ns-input-number {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #99a1b7;
  flex-shrink: 0;
}

.domain-ns-input-item .form-control {
  background: #fff;
  border: 1px solid #e4e6ef;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #181c32;
  transition: all 0.2s ease;
}

.domain-ns-input-item .form-control:focus {
  border-color: #ff4b0e;
  box-shadow: 0 0 0 3px rgba(255, 75, 14, 0.1);
}

.domain-ns-input-item .form-control:disabled {
  background: #f1f1f4;
  color: #99a1b7;
  cursor: not-allowed;
}

.domain-ns-input-item .form-control::placeholder {
  color: #b5b5c3;
}

.domain-ns-action {
  display: flex;
  justify-content: flex-end;
}

.domain-ns-action .btn {
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff4b0e 0%, #e03e00 100%);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 75, 14, 0.3);
}

.domain-ns-action .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 75, 14, 0.4);
  color: #fff;
}

.domain-ns-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, #fff8f5 0%, #fff 100%);
  border: 1px solid #ffe4d6;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 25px;
}

.domain-ns-info i {
  width: 36px;
  height: 36px;
  background: #fff0e6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4b0e;
  font-size: 16px;
  flex-shrink: 0;
}

.domain-ns-info p {
  color: #c73e00;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.domain-error-message {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  border: 1px solid #fed7d7;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.domain-error-message i {
  width: 40px;
  height: 40px;
  background: #ffeef3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8285a;
  font-size: 18px;
  flex-shrink: 0;
}

.domain-error-message span {
  color: #9b2c2c;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .domain-ns-choice-group {
    flex-direction: column;
  }

  .domain-nameservers-header {
    flex-direction: column;
    text-align: center;
  }

  .domain-ns-input-item {
    flex-direction: column;
    align-items: stretch;
  }

  .domain-ns-input-number {
    align-self: flex-start;
  }

  .domain-ns-action {
    justify-content: center;
  }

  .domain-ns-action .btn {
    width: 100%;
    justify-content: center;
  }
}

.domain-reglock-card {
  background: #fff;
  border: 1px solid #f1f1f4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.domain-reglock-header {
  background: linear-gradient(135deg, #f9f9fb 0%, #fff 100%);
  padding: 25px 30px;
  border-bottom: 1px solid #f1f1f4;
  display: flex;
  align-items: center;
  gap: 15px;
}

.domain-reglock-header-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fff0e6 0%, #ffe4d6 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4b0e;
  font-size: 22px;
  flex-shrink: 0;
}

.domain-reglock-header-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #181c32;
  margin: 0 0 4px 0;
}

.domain-reglock-header-content p {
  font-size: 13px;
  color: #99a1b7;
  margin: 0;
}

.domain-reglock-body {
  padding: 30px;
}

.domain-reglock-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, #fff8f5 0%, #fff 100%);
  border: 1px solid #ffe4d6;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 25px;
}

.domain-reglock-info i {
  width: 36px;
  height: 36px;
  background: #fff0e6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4b0e;
  font-size: 16px;
  flex-shrink: 0;
}

.domain-reglock-info p {
  color: #c73e00;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.domain-reglock-status-box {
  background: #f9f9fb;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  margin-bottom: 25px;
}

.domain-reglock-status-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.domain-reglock-status-icon.locked {
  background: linear-gradient(135deg, #e8fff3 0%, #d1fae5 100%);
  color: #17c653;
}

.domain-reglock-status-icon.unlocked {
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
  color: #f8285a;
}

.domain-reglock-status-text {
  font-size: 14px;
  color: #99a1b7;
  margin-bottom: 8px;
}

.domain-reglock-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
}

.domain-reglock-status-badge.locked {
  background: linear-gradient(135deg, #e8fff3 0%, #d1fae5 100%);
  color: #17c653;
}

.domain-reglock-status-badge.unlocked {
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
  color: #f8285a;
}

.domain-reglock-action {
  display: flex;
  justify-content: center;
}

.domain-reglock-action .btn {
  padding: 14px 35px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  transition: all 0.3s ease;
}

.domain-reglock-action .btn-lock {
  background: linear-gradient(135deg, #17c653 0%, #0f9d3f 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(23, 198, 83, 0.3);
}

.domain-reglock-action .btn-lock:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(23, 198, 83, 0.4);
  color: #fff;
}

.domain-reglock-action .btn-unlock {
  background: linear-gradient(135deg, #f8285a 0%, #d9214e 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(248, 40, 90, 0.3);
}

.domain-reglock-action .btn-unlock:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(248, 40, 90, 0.4);
  color: #fff;
}

.domain-release-card {
  background: #fff;
  border: 1px solid #f1f1f4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.domain-release-header {
  background: linear-gradient(135deg, #f9f9fb 0%, #fff 100%);
  padding: 25px 30px;
  border-bottom: 1px solid #f1f1f4;
  display: flex;
  align-items: center;
  gap: 15px;
}

.domain-release-header-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffeef3 0%, #ffd6e0 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8285a;
  font-size: 22px;
  flex-shrink: 0;
}

.domain-release-header-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #181c32;
  margin: 0 0 4px 0;
}

.domain-release-header-content p {
  font-size: 13px;
  color: #99a1b7;
  margin: 0;
}

.domain-release-body {
  padding: 30px;
}

.domain-release-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 25px;
}

.domain-release-warning i {
  width: 36px;
  height: 36px;
  background: #fef3c7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: 16px;
  flex-shrink: 0;
}

.domain-release-warning p {
  color: #92400e;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.domain-release-form-group {
  margin-bottom: 25px;
}

.domain-release-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #181c32;
  margin-bottom: 10px;
}

.domain-release-input {
  width: 100%;
  max-width: 400px;
  background: #f9f9fb;
  border: 1px solid #e4e6ef;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #181c32;
  transition: all 0.2s ease;
}

.domain-release-input:focus {
  background: #fff;
  border-color: #ff4b0e;
  box-shadow: 0 0 0 3px rgba(255, 75, 14, 0.1);
  outline: none;
}

.domain-release-input::placeholder {
  color: #b5b5c3;
}

.domain-release-action {
  display: flex;
  justify-content: flex-start;
}

.domain-release-action .btn {
  padding: 14px 35px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f8285a 0%, #d9214e 100%);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(248, 40, 90, 0.3);
}

.domain-release-action .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(248, 40, 90, 0.4);
  color: #fff;
}

.domain-addons-card {
  background: #fff;
  border: 1px solid #f1f1f4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.domain-addons-header {
  background: linear-gradient(135deg, #f9f9fb 0%, #fff 100%);
  padding: 25px 30px;
  border-bottom: 1px solid #f1f1f4;
  display: flex;
  align-items: center;
  gap: 15px;
}

.domain-addons-header-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e8f4ff 0%, #d1e9ff 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b84ff;
  font-size: 22px;
  flex-shrink: 0;
}

.domain-addons-header-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #181c32;
  margin: 0 0 4px 0;
}

.domain-addons-header-content p {
  font-size: 13px;
  color: #99a1b7;
  margin: 0;
}

.domain-addons-body {
  padding: 30px;
}

.domain-addons-intro {
  font-size: 14px;
  color: #5e6278;
  margin-bottom: 25px;
  line-height: 1.6;
}

.domain-addon-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #f9f9fb;
  border-radius: 14px;
  padding: 25px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.domain-addon-item:last-child {
  margin-bottom: 0;
}

.domain-addon-item:hover {
  background: #f5f5f8;
}

.domain-addon-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.domain-addon-icon.idprotect {
  background: linear-gradient(135deg, #e8fff3 0%, #d1fae5 100%);
  color: #17c653;
}

.domain-addon-icon.dns {
  background: linear-gradient(135deg, #e8f4ff 0%, #d1e9ff 100%);
  color: #1b84ff;
}

.domain-addon-icon.email {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  color: #9b59b6;
}

.domain-addon-content {
  flex: 1;
}

.domain-addon-title {
  font-size: 16px;
  font-weight: 700;
  color: #181c32;
  margin: 0 0 6px 0;
}

.domain-addon-desc {
  font-size: 13px;
  color: #5e6278;
  margin: 0 0 15px 0;
  line-height: 1.5;
}

.domain-addon-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.domain-addon-status.active {
  background: #e8fff3;
  color: #17c653;
}

.domain-addon-status.inactive {
  background: #f1f1f4;
  color: #99a1b7;
}

.domain-addon-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.domain-addon-actions .btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  transition: all 0.3s ease;
}

.domain-addon-actions .btn-manage {
  background: linear-gradient(135deg, #17c653 0%, #0f9d3f 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(23, 198, 83, 0.25);
}

.domain-addon-actions .btn-manage:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(23, 198, 83, 0.35);
  color: #fff;
}

.domain-addon-actions .btn-disable {
  background: #fff;
  color: #f8285a;
  border: 1px solid #fed7d7;
}

.domain-addon-actions .btn-disable:hover {
  background: #fff5f5;
  color: #f8285a;
}

.domain-addon-actions .btn-buy {
  background: linear-gradient(135deg, #ff4b0e 0%, #e03e00 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(255, 75, 14, 0.25);
}

.domain-addon-actions .btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 75, 14, 0.35);
  color: #fff;
}

.domain-addon-price {
  font-size: 14px;
  font-weight: 700;
  color: #ff4b0e;
  margin-left: 5px;
}

@media (max-width: 768px) {
  .domain-reglock-header,
  .domain-release-header,
  .domain-addons-header {
    flex-direction: column;
    text-align: center;
  }

  .domain-addon-item {
    flex-direction: column;
    text-align: center;
  }

  .domain-addon-actions {
    justify-content: center;
  }

  .domain-release-input {
    max-width: 100%;
  }

  .domain-release-action {
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .domain-prices .heading-parent {
    width: 60%;
  }
}

.ticket-sidebar-info {
  padding: 15px 20px;
}

.ticket-sidebar-item {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f4f6f8;
  font-size: 14px;
  color: #5e6278;
}

.ticket-sidebar-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ticket-sidebar-item .title {
  display: block;
  font-weight: 700;
  color: #361c32;
  margin-bottom: -15px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ticket-sidebar-item .label {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}

.ticket-sidebar-item .label.requestor-type-owner {
  background-color: #e8fff3;
  color: #17c653;
}

.ticket-sidebar-item .label[style*="background-color"] {
  color: #fff !important;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  margin-right: 5px;
  margin-left: 0;
}

.ticket-sidebar-footer {
  padding: 0 10px;
}

.ticket-sidebar-footer .btn {
  width: 125px;
  margin: 0 !important;
  padding: 4px !important;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-weight: 600;
  font-size: 13px;
}

.ticket-sidebar-footer .btn i {
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .footer-main {
    padding: 40px 0 20px;
  }

  .footer-heading {
    margin-top: 20px;
  }
}

footer#footer {
  background: #fff !important;
  border-top: 1px solid #f1f1f4;
}

footer#footer .text-muted {
  color: #78829d !important;
  font-size: 13px;
  font-weight: 500;
}

footer#footer a.text-muted:hover {
  color: #ff4b0e !important;
}

footer#footer .contact-item i {
  color: #ff4b0e;
  font-size: 14px;
}

footer#footer .footer-links-inline a {
  transition: all 0.2s ease;
}

/* --- Modern Invoice Payment Styles --- */

.invoice-receipt {
    border: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.receipt-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.receipt-item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.receipt-item-desc {
    font-size: 13.5px;
    color: #4b5675;
    flex: 1;
    line-height: 1.4;
}

.receipt-item-amount {
    font-weight: 600;
    color: #181c32;
    white-space: nowrap;
}

.receipt-divider {
    height: 1px;
    border-top: 1px dashed #dbdfe9;
    margin: 20px 0;
}

.receipt-totals {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.receipt-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #4b5675;
}

.receipt-total-row.grand-total {
    font-size: 18px;
    color: #181c32;
    padding-top: 10px;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 16px;
}

.payment-method-item {
    position: relative;
}

.payment-method-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.method-card-label {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fff;
    border: 2px solid #eff2f5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    height: 100%;
}

.payment-method-item input[type="radio"]:checked + .method-card-label {
    border-color: #ff4b0e;
    background-color: #fff0e6;
    box-shadow: 0 4px 12px rgba(255, 75, 14, 0.1);
}

.payment-method-item.expired .method-card-label {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f9f9f9;
}

.method-card-icon {
    width: 45px;
    height: 45px;
    background: #f4f6f8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #a1a5b7;
    margin-right: 15px;
    transition: all 0.2s ease;
}

.payment-method-item input[type="radio"]:checked + .method-card-label .method-card-icon {
    background: #fff;
    color: #ff4b0e;
}

.method-card-details {
    flex: 1;
}

.method-card-name {
    font-weight: 700;
    color: #181c32;
    font-size: 14px;
    margin-bottom: 2px;
}

.method-card-number {
    font-size: 13px;
    color: #7e8299;
}

.method-card-expiry {
    font-size: 12px;
    color: #a1a5b7;
    margin-top: 4px;
    font-weight: 500;
}

.method-card-check {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
    color: #ff4b0e;
    font-size: 18px;
}

.payment-method-item input[type="radio"]:checked + .method-card-label .method-card-check {
    opacity: 1;
    transform: scale(1);
}

.new-method .method-card-icon {
    background: #fff0e6;
    color: #ff4b0e;
}

@media (max-width: 576px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .method-card-label {
        padding: 15px;
    }
}

/* Custom form refinements for payment page */
.cc-payment-form .form-group label {
    font-weight: 600;
    color: #3f4254;
    font-size: 0.95rem;
}

.cc-payment-form .form-control {
    height: 45px;
    border-radius: 8px;
    border: 1px solid #dbdfe9;
    background-color: #f9f9f9;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.2s;
}

.cc-payment-form .form-control:focus {
    background-color: #fff;
    border-color: #ff4b0e;
    box-shadow: 0 0 0 4px rgba(255, 75, 14, 0.1);
}

.cc-payment-form .btn-link {
    color: #ff4b0e;
    font-weight: 600;
    text-decoration: none;
}

.cc-payment-form .btn-link:hover {
    color: #e8420a;
}

.auth3d-area {
    border: 1px solid #eff2f5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
