/* =========================================================
   QUICKCONNECT — MY SERVICES
   FULL FIXED CSS
========================================================= */

/* =========================
   PAGE
========================= */

.my-services-page {
    max-width: 1250px;
    margin: 0 auto;
    padding: 40px;
}

/* =========================
   PAGE HEADING
========================= */

.services-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 28px;
}

.services-heading > div {
    min-width: 0;
}

.eyebrow {
    display: block;
    color: #60a5fa;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    margin-bottom: 8px;
}

.services-heading h2 {
    color: #fff;
    font-size: 30px;
    line-height: 1.2;
    margin: 0;
}

.services-heading p {
    margin-top: 8px;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================
   ADD SERVICE BUTTON
========================= */

#addServiceButton {
    flex-shrink: 0;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    width: auto !important;
    min-width: 130px !important;
    height: 42px !important;

    padding: 0 17px !important;
    margin: 0 !important;

    border: 1px solid rgba(96,165,250,.22) !important;
    border-radius: 11px !important;

    background: rgba(59,130,246,.10) !important;
    color: #93c5fd !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    box-shadow: none !important;
    cursor: pointer !important;

    white-space: nowrap !important;
}

#addServiceButton i {
    position: static !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;

    color: #60a5fa !important;
    font-size: 13px !important;
}

#addServiceButton:hover {
    background: rgba(59,130,246,.16) !important;
    border-color: rgba(96,165,250,.35) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}

/* =========================
   SUMMARY
========================= */

.service-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.summary-card {
    min-width: 0;
    min-height: 82px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 17px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;

    background: rgba(17,25,42,.72);
    backdrop-filter: blur(15px);

    transition: .2s ease;
}

.summary-card:hover {
    border-color: rgba(255,255,255,.13);
    transform: translateY(-2px);
}

.summary-card > div:last-child {
    min-width: 0;
}

.summary-card span {
    display: block;
    color: #94a3b8;
    font-size: 11px;
    margin-bottom: 5px;
}

.summary-card strong {
    display: block;
    color: #fff;
    font-size: 22px;
}

.summary-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-size: 15px;
}

.summary-icon.blue {
    background: rgba(59,130,246,.12);
    color: #60a5fa;
}

.summary-icon.green {
    background: rgba(34,197,94,.12);
    color: #4ade80;
}

.summary-icon.purple {
    background: rgba(168,85,247,.12);
    color: #c084fc;
}

.summary-icon.orange {
    background: rgba(245,158,11,.12);
    color: #fbbf24;
}

/* =========================================================
   SERVICE FORM
========================================================= */

.service-form-card,
.services-list-card {
    width: 100%;
    padding: 25px !important;
    margin-bottom: 22px;
}

/* =========================
   CARD HEADER
========================= */

.card-heading {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    margin-bottom: 24px;
}

.heading-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 12px;
}

.heading-icon i {
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
}

.heading-icon.blue {
    background: rgba(59,130,246,.12);
    color: #60a5fa;
}

.heading-icon.purple {
    background: rgba(168,85,247,.12);
    color: #c084fc;
}

/* =========================================================
   FORM GRID
========================================================= */

.service-form-card .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-form-card .field {
    min-width: 0;
}

.service-form-card .field.full {
    grid-column: 1 / -1;
}

/* =========================
   LABELS
========================= */

.service-form-card .field > label {
    display: block;

    margin-bottom: 7px;

    color: #cbd5e1;
    font-size: 12px;
    font-weight: 600;
}

/* =========================================================
   INPUT WRAPPER
========================================================= */

.service-form-card .input-wrap {
    position: relative;
    width: 100%;
}

/* IMPORTANT:
   These icons stay INSIDE the input area
   and never sit on top of the text.
*/

.service-form-card .input-wrap > i {
    position: absolute !important;

    left: 14px !important;
    top: 50% !important;

    width: 16px !important;
    height: auto !important;

    transform: translateY(-50%) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #64748b !important;
    font-size: 13px !important;

    pointer-events: none !important;

    z-index: 2 !important;
}

/* =========================
   INPUTS
========================= */

.service-form-card .input-wrap input,
.service-form-card .input-wrap select {
    width: 100% !important;
    height: 45px !important;

    padding: 0 14px 0 42px !important;

    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 11px !important;

    outline: none !important;

    background: rgba(7,13,24,.72) !important;
    color: #fff !important;

    font-size: 13px !important;

    box-shadow: none !important;
}

.service-form-card .input-wrap input::placeholder {
    color: #475569 !important;
}

.service-form-card .input-wrap input:focus,
.service-form-card .input-wrap select:focus,
.service-form-card textarea:focus {
    border-color: rgba(59,130,246,.55) !important;

    box-shadow:
        0 0 0 3px rgba(59,130,246,.08) !important;
}

/* =========================
   SELECT
========================= */

.service-form-card .input-wrap select {
    appearance: none !important;
    -webkit-appearance: none !important;

    padding-right: 14px !important;
}

.service-form-card .input-wrap select option {
    background: #0f172a;
    color: #fff;
}

/* =========================
   DESCRIPTION
========================= */

.service-form-card textarea {
    width: 100% !important;

    min-height: 115px !important;

    padding: 13px 14px !important;

    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 11px !important;

    outline: none !important;

    background: rgba(7,13,24,.72) !important;
    color: #fff !important;

    font-size: 13px !important;

    resize: vertical !important;
}

.service-form-card textarea::placeholder {
    color: #475569 !important;
}

/* =========================================================
   SERVICE AVAILABILITY
   THIS IS THE MAIN FIX
========================================================= */

.mode-options {
    width: 100%;

    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

    gap: 12px !important;

    align-items: stretch !important;
}

/* Hide actual checkbox */

.mode-option {
    position: relative !important;

    display: block !important;

    width: 100% !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    cursor: pointer !important;
}

.mode-option > input {
    position: absolute !important;

    opacity: 0 !important;

    width: 1px !important;
    height: 1px !important;

    pointer-events: none !important;
}

/* =========================================================
   MODE BOX
========================================================= */

.mode-box {
    width: 100% !important;

    min-height: 68px !important;
    height: 68px !important;

    padding: 12px 14px !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;

    gap: 12px !important;

    border: 1px solid rgba(255,255,255,.09) !important;
    border-radius: 13px !important;

    background: rgba(255,255,255,.025) !important;

    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease !important;

    box-sizing: border-box !important;
}

/* CRITICAL:
   Force icon to stay beside text
*/

.mode-box > i {
    position: static !important;

    top: auto !important;
    left: auto !important;

    transform: none !important;

    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;

    border-radius: 10px !important;

    background: rgba(59,130,246,.10) !important;
    color: #60a5fa !important;

    font-size: 14px !important;

    flex-shrink: 0 !important;
}

/* Text container */

.mode-box > span {
    min-width: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;

    gap: 3px !important;

    flex: 1 !important;

    overflow: hidden !important;
}

/* Strong */

.mode-box > span > strong {
    display: block !important;

    margin: 0 !important;

    color: #fff !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    line-height: 1.2 !important;
}

/* Description */

.mode-box > span > small {
    display: block !important;

    margin: 0 !important;

    color: #64748b !important;

    font-size: 10px !important;
    line-height: 1.3 !important;

    white-space: normal !important;
}

/* Hover */

.mode-option:hover .mode-box {
    border-color: rgba(96,165,250,.30) !important;

    background: rgba(59,130,246,.05) !important;

    transform: translateY(-1px);
}

/* Checked */

.mode-option > input:checked + .mode-box {
    border-color: rgba(59,130,246,.55) !important;

    background:
        linear-gradient(
            135deg,
            rgba(59,130,246,.12),
            rgba(124,58,237,.07)
        ) !important;

    box-shadow:
        0 8px 25px rgba(0,0,0,.12) !important;
}

.mode-option > input:checked + .mode-box > i {
    background: rgba(59,130,246,.20) !important;
    color: #93c5fd !important;
}

/* =========================================================
   STORE LOCATION
========================================================= */

#storeLocationField {
    min-width: 0;
}

/* =========================================================
   IMAGE UPLOAD
========================================================= */

.image-upload {
    min-height: 82px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 14px;

    border: 1px dashed rgba(255,255,255,.14);
    border-radius: 13px;

    background: rgba(255,255,255,.025);
}

.upload-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(59,130,246,.10);
    color: #60a5fa;

    font-size: 15px;
}

.upload-content {
    min-width: 0;
}

.upload-content strong {
    display: block;

    color: #fff;

    font-size: 12px;
}

.upload-content p {
    margin-top: 3px;

    color: #64748b;

    font-size: 10px;
}

.upload-link {
    display: inline-block;

    margin-top: 6px;

    color: #60a5fa;

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;
}

.upload-link:hover {
    color: #93c5fd;
    text-decoration: underline;
}

/* =========================
   IMAGE PREVIEW
========================= */

.image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 10px;
}

.image-preview img {
    width: 70px;
    height: 70px;

    object-fit: cover;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,.10);
}

/* =========================================================
   FORM FOOTER
========================================================= */

.service-form-card .card-footer {
    margin-top: 22px;
    padding-top: 17px;

    border-top: 1px solid rgba(255,255,255,.07);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.form-actions {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 10px;
}

/* =========================
   FORM BUTTONS
========================= */

.form-actions button {
    width: auto !important;
    min-width: 90px !important;
    height: 40px !important;

    padding: 0 15px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 7px !important;

    border-radius: 10px !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    cursor: pointer !important;
}

.form-actions button i {
    position: static !important;
    transform: none !important;
}

/* Save */

#saveServiceButton {
    background: linear-gradient(
        135deg,
        #2563eb,
        #4f46e5
    ) !important;

    color: #fff !important;

    border: none !important;

    box-shadow: 0 7px 20px rgba(37,99,235,.18) !important;
}

#saveServiceButton:hover {
    transform: translateY(-1px) !important;
}

/* Cancel */

#cancelServiceButton {
    background: rgba(255,255,255,.04) !important;

    color: #94a3b8 !important;

    border: 1px solid rgba(255,255,255,.08) !important;
}

#cancelServiceButton:hover {
    color: #fff !important;

    background: rgba(255,255,255,.07) !important;
}

/* =========================================================
   SERVICES TOOLBAR
========================================================= */

.services-toolbar {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 180px;

    gap: 12px;

    margin-bottom: 20px;
}

.service-search {
    height: 44px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 0 13px;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 11px;

    background: rgba(7,13,24,.65);
}

.service-search > i {
    position: static !important;
    transform: none !important;

    color: #64748b;

    font-size: 13px;

    flex-shrink: 0;
}

.service-search input {
    width: 100%;
    height: 100%;

    border: none;
    outline: none;

    background: transparent;

    color: #fff;

    font-size: 12px;
}

.service-search input::placeholder {
    color: #475569;
}

.service-filter select {
    width: 100%;
    height: 44px;

    padding: 0 13px;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 11px;

    outline: none;

    background: #0b1220;

    color: #cbd5e1;

    font-size: 12px;
}

/* =========================================================
   SERVICES GRID
========================================================= */

#servicesGrid {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(270px, 1fr));

    gap: 16px;

    width: 100%;
}

/* =========================================================
   SERVICE CARDS
========================================================= */

#servicesGrid .service-card {
    min-width: 0;

    display: flex;
    flex-direction: column;

    padding: 16px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;

    background: rgba(255,255,255,.035);

    overflow: hidden;

    height: auto;
    min-height: 0;
}

/* =========================================================
   SERVICE LOADING
========================================================= */

.services-loading {
    grid-column: 1 / -1;

    min-height: 180px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    color: #94a3b8;
}

.services-loading .loading-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    border-radius: 13px;

    background: rgba(59,130,246,.10);
    color: #60a5fa;
}

.services-loading strong {
    color: #fff;
    font-size: 13px;
}

.services-loading p {
    margin-top: 5px;
    color: #64748b;
    font-size: 11px;
}

/* =========================================================
   EMPTY STATE
========================================================= */

.services-empty {
    padding: 45px 20px;

    text-align: center;
}

.empty-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: rgba(59,130,246,.10);
    color: #60a5fa;

    font-size: 20px;
}

.services-empty h3 {
    color: #fff;
    font-size: 17px;
}

.services-empty p {
    max-width: 430px;

    margin: 7px auto 20px;

    color: #64748b;

    font-size: 12px;
    line-height: 1.6;
}

#emptyAddServiceButton {
    width: auto !important;
    min-width: 150px !important;

    height: 40px !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 7px !important;

    padding: 0 15px !important;

    border-radius: 10px !important;

    background: rgba(59,130,246,.10) !important;

    border: 1px solid rgba(96,165,250,.20) !important;

    color: #60a5fa !important;
}

/* =========================================================
   FORCE ICONS BESIDE TEXT
   Prevents global CSS from stacking icons.
========================================================= */

.my-services-page button,
.my-services-page a,
.my-services-page label,
.my-services-page .mode-box,
.my-services-page .form-actions button,
.my-services-page .summary-card,
.my-services-page .image-upload {
    box-sizing: border-box;
}

.my-services-page button i,
.my-services-page .mode-box > i,
.my-services-page .summary-icon i,
.my-services-page .heading-icon i,
.my-services-page .upload-icon i {
    position: static !important;
    top: auto !important;
    left: auto !important;

    transform: none !important;

    flex-shrink: 0 !important;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1050px) {

    .my-services-page {
        padding: 30px;
    }

    .service-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {

    .my-services-page {
        padding: 25px 18px 50px;
    }

    .services-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    #addServiceButton {
        width: auto !important;
    }

    .service-form-card,
    .services-list-card {
        padding: 19px !important;
    }

    .service-form-card .form-grid {
        grid-template-columns: 1fr;
    }

    .service-form-card .field.full {
        grid-column: auto;
    }

    /* Keep Store/Mobile side by side where possible */

    .mode-options {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .mode-box {
        min-height: 64px !important;
        height: 64px !important;

        padding: 10px !important;

        gap: 9px !important;
    }

    .mode-box > i {
        width: 34px !important;
        min-width: 34px !important;
        height: 34px !important;

        font-size: 12px !important;
    }

    .mode-box > span > strong {
        font-size: 12px !important;
    }

    .mode-box > span > small {
        font-size: 9px !important;
    }

    .services-toolbar {
        grid-template-columns: 1fr;
    }

    .service-form-card .card-footer {
        align-items: stretch;

        flex-direction: column;
    }

    .form-actions {
        width: 100%;
    }

    .form-actions button {
        flex: 1;
    }
}

@media (max-width: 480px) {

    .my-services-page {
        padding: 20px 12px 40px;
    }

    .services-heading h2 {
        font-size: 24px;
    }

    .services-heading p {
        font-size: 12px;
    }

    .service-summary-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .summary-card {
        min-height: 72px;
        padding: 12px;
        gap: 9px;
    }

    .summary-icon {
        width: 34px;
        min-width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .summary-card span {
        font-size: 9px;
    }

    .summary-card strong {
        font-size: 18px;
    }

    /*
       On very small screens the mode boxes
       stay compact instead of becoming huge.
    */

    .mode-options {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .mode-box {
        min-height: 60px !important;
        height: 60px !important;

        padding: 8px !important;

        gap: 7px !important;
    }

    .mode-box > i {
        width: 30px !important;
        min-width: 30px !important;
        height: 30px !important;

        border-radius: 8px !important;

        font-size: 11px !important;
    }

    .mode-box > span > strong {
        font-size: 11px !important;
    }

    .mode-box > span > small {
        font-size: 8px !important;
    }

    .image-upload {
        padding: 11px;
    }

    .upload-icon {
        width: 34px;
        min-width: 34px;
        height: 34px;
    }
}
/* =========================
   THUMB STRIP
========================= */

.thumb-strip {
  display: flex;
  gap: 7px;

  margin-top: 9px;
  overflow-x: auto;

  scrollbar-width: none;
}

.thumb-strip::-webkit-scrollbar {
  display: none;
}

.thumb-strip img {
  width: 52px;
  height: 45px;

  flex: 0 0 52px;

  object-fit: cover;
  border-radius: 8px;

  cursor: pointer;

  opacity: 0.72;

  border: 1px solid transparent;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.thumb-strip img:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(167, 139, 250, 0.5);
}
/* =========================================================
   FIX: SIDEBAR LOGOUT STAYS AT BOTTOM
========================================================= */

.sidebar {
  display: flex !important;
  flex-direction: column !important;
  height: 100vh !important;
  min-height: 100vh !important;
}

.sidebar-nav {
  flex: 1 !important;
}

.sidebar-bottom {
  margin-top: auto !important;
  width: 100% !important;
  padding-top: 20px !important;
}

.logout-btn {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
}


/* =========================================================
   FIX: SERVICE IMAGE GALLERY
========================================================= */

.service-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 25px !important;
  background: rgba(0, 0, 0, 0.82) !important;
}

.service-modal.show {
  display: flex !important;
}

.service-gallery-content {
  position: relative !important;
  width: min(900px, 95vw) !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  padding: 25px !important;
  border-radius: 18px !important;
  background: #111827 !important;
}

.modal-close {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  width: 38px !important;
  height: 38px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  z-index: 5 !important;
}

.modal-title {
  margin: 0 50px 20px 0 !important;
}

.gallery-main {
  width: 100% !important;
  height: min(55vh, 500px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  background: #020617 !important;
}

.gallery-main img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

.gallery-thumbnails {
  display: flex !important;
  gap: 12px !important;
  margin-top: 16px !important;
  overflow-x: auto !important;
  padding: 5px !important;
}

.gallery-thumbnail-item {
  position: relative !important;
  flex: 0 0 85px !important;
  width: 85px !important;
  height: 70px !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  background: #020617 !important;
}

.gallery-thumbnail-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  cursor: pointer !important;
  opacity: 0.65 !important;
}

.gallery-thumbnail-item img.active {
  opacity: 1 !important;
}

.gallery-delete-image {
  position: absolute !important;
  top: 4px !important;
  right: 4px !important;
  width: 25px !important;
  height: 25px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  z-index: 2 !important;
}
/* =========================================================
   LOGOUT BUTTON
========================================================= */

.sidebar-bottom {
  margin-top: auto !important;
  width: 100% !important;
  padding: 20px 0 0 !important;
}

.logout-btn {
  width: 100% !important;
  min-height: 46px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;

  padding: 12px 16px !important;

  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px !important;

  background: rgba(255, 255, 255, 0.04) !important;
  color: #cbd5e1 !important;

  font-size: 14px !important;
  font-weight: 600 !important;

  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.logout-btn i {
  width: 20px !important;
  min-width: 20px !important;
  text-align: center !important;
  font-size: 15px !important;
}

.logout-btn span {
  display: inline-block !important;
  white-space: nowrap !important;
}

.logout-btn:hover {
  background: rgba(239, 68, 68, 0.12) !important;
  border-color: rgba(239, 68, 68, 0.25) !important;
  color: #f87171 !important;
}

.logout-btn:active {
  transform: translateY(1px);
}