/* Styles from membership.htm */
        .card {
            border-radius: 0.375rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .card-body {
            text-align: left;
        }

        .card-header {
            text-align: center;
            font-size: 1.75rem;
            font-weight: bold;
            padding: 20px;
        }

        .card-header.bg-primary {
            background-color: #007bff;
        }

        .card-header.bg-secondary {
            background-color: #6c757d;
        }

        .card-header.bg-dark {
            background-color: #343a40;
        }

        .disabled-card {
            opacity: 0.6;
            pointer-events: none;
        }

        .btn-primary, .btn-secondary, .btn-dark {
            font-size: 1.1rem;
            padding: 10px 20px;
        }

        .info-alert {
            margin-bottom: 20px;
            padding: 15px;
            background-color: #e9ecef;
            border-left: 5px solid #007bff;
            border-radius: 0.375rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        }

        .info-alert h5 {
            margin-bottom: 10px;
            font-size: 1.25rem;
        }

        .text-left {
            text-align: left;
        }


/* Styles from ai-photos.htm */
        /* Card image and hover scale */
        .card-img-top {
            height: 200px;
            object-fit: cover;
            position: relative;
            z-index: 0;
        }
        .card {
            transition: transform 0.2s ease;
        }
        .card:hover {
            transform: scale(1.02);
        }
        .card-body {
            position: relative;
            z-index: 1;
            background-color: #fff;
            padding: 1rem;
        }
        /* Active Filters Display */
        .active-filters {
            background-color: #f8f9fa;
            padding: 10px 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-weight: bold;
        }
        .active-filters ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        .active-filters li {
            display: inline;
            margin-right: 15px;
        }
        .clear-filters {
            margin-top: 10px;
        }
        /* Info Alert */
        .info-alert {
            margin-bottom: 20px;
            padding: 15px;
            background-color: #e9ecef;
            border-left: 5px solid #007bff;
            border-radius: 0.375rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        }
        /* Responsive adjustments for filters */
        @media (max-width: 576px) {
            .breadcrumb { display: none; }
            .input-group { flex-direction: column; }
            .filter-dropdown {
                margin-bottom: 10px;
                width: 100%;
                min-width: 200px;
            }
        }
        /* Help dropdowns display fully */
        select.form-select {
            max-height: 300px; /* Adjust as needed */
            overflow-y: auto;
        }


/* Styles from story-creator.htm */
        /* Your existing styles */
        /* Card Styles */
        .card {
            border: none;
            transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
            position: relative;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            cursor: pointer;
        }

        .card-has-bg:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-image: inherit;
            background-size: cover;
            background-position: center center;
            filter: grayscale(100%);
            z-index: 1;
            pointer-events: none;
        }

        .card:hover {
            transform: scale(0.98);
            box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.3);
            background-size: 130%;
        }

        .card-img-overlay {
            z-index: 2;
            transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
            background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
        }

        .card-title {
            font-weight: 800;
        }

        .card-meta {
            color: rgba(0, 0, 0, 0.3);
            text-transform: uppercase;
            font-weight: 500;
            letter-spacing: 2px;
        }

        .card-body {
            transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
        }

        .card:hover .card-body {
            margin-top: 30px;
        }

        /* Loading Animation Overlay */
        #loadingAnimationOverlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            backdrop-filter: blur(5px);
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            color: #fff;
        }

        #loadingAnimationOverlay .creating-story {
            text-align: center;
        }

        #loadingAnimationOverlay .creating-story p {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        #loadingAnimationOverlay .spinner-border {
            width: 3rem;
            height: 3rem;
            border-width: 0.3em;
        }

        .story-content {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .storystartbutton {
            padding-bottom: 20px;
        }

        /* Basic button styling */
        .storystartbutton .btn {
            position: relative;
            font-size: 1.2rem;
            padding: 15px 30px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .storystartbutton .btn:hover {
            background-color: #0056b3;
        }

        .storystartbutton .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transition: transform 0.6s ease;
            z-index: 0;
        }

        .storystartbutton .btn:hover::before {
            animation: wave 1s forwards;
        }

        @keyframes wave {
            0% {
                left: -100%;
                opacity: 0.2;
            }
            50% {
                left: 50%;
                opacity: 0.5;
            }
            100% {
                left: 100%;
                opacity: 0;
            }
        }

        .storystartbutton .btn span {
            position: relative;
            z-index: 1;
        }

        .btn-block {
            width: 100%;
        }

        .custom-select {
            display: block;
            width: 100%;
            padding: 0.5rem 0.75rem;
            font-size: 1rem;
            line-height: 1.5;
            color: #495057;
            background-color: #fff;
            border: 1px solid #ced4da;
            border-radius: 0.25rem;
            appearance: none;
            transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
            box-shadow: 0 1px 4px rgba(0,0,0,0.1);
        }

        .custom-select:focus {
            border-color: #80bdff;
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .form-control.d-inline.w-auto.fs-5.mx-1 {
            display: inline-block;
        }


/* Styles from notifications.htm */
    .nav-btn {
      margin: .5rem .5rem;
      padding: .5rem 1rem;
      border: 1px solid #000;
      border-radius: .75rem;
      background: #fff;
      color: #000;
      box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    }
    .nav-btn.active {
      background: #0d6efd;
      color: #fff;
      border-color: #0d6efd;
    }


/* Styles from moderation.htm */
    /* Custom styles if needed */
    .list-group-item {
        margin-bottom: 15px;
        background-color: transparent;
    }
    .review-actions {
        margin-top: 10px;
    }


/* Styles from image-cloud-category-page.htm */
        body {
            background-color: #f5f5f5;
            font-family: Arial, sans-serif;
        }
        .container {
            margin-top: 30px;
        }
        /* Search Box Styles */
        .search-container {
            margin-bottom: 20px;
        }
        #tagFilter {
            width: 100%;
            padding: 10px;
            font-size: 1em;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        /* Category Header Styles */
        .category-header {
            margin-top: 40px;
            margin-bottom: 10px;
            font-size: 1.8em;
            position: relative;
            display: inline-block;
            padding-bottom: 5px;
        }
        .category-header::after {
            content: "";
            display: block;
            width: 50px;
            height: 3px;
            background-color: #007BFF;
            margin-top: 5px;
        }
        /* Tag Pills Container */
        .tag-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        /* Individual Tag Pill Styles */
        .tag-pill {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            color: #fff;
            border-radius: 50px;
            text-decoration: none;
            transition: background-color 0.3s, transform 0.2s;
            font-size: 0.9em;
        }
        .tag-pill:hover {
            opacity: 0.8;
            transform: scale(1.05);
        }
        /* Dynamic Color Classes */
        .color1 { background-color: #210F37; color: #F4F4F4; }
        .color2 { background-color: #4F1C51; color: #F4F4F4; }
        .color3 { background-color: #A55B4B; color: #F4F4F4; }
        .color4 { background-color: #DCA06D; color: #210F37; }
        /* Statistics Cards */
        .stats-cards {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }
        .card {
            flex: 1;
            padding: 0px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .card-title {
            font-size: 1.5em;
            margin-bottom: 10px;
            color: #343a40;
        }
        .card-text {
            font-size: 1.3em;
            color: #007BFF;
        }
        /* Alert Styles */
        .alert {
            margin-top: 30px;
            padding: 15px;
            background-color: #d1ecf1;
            color: #0c5460;
            border: 1px solid #bee5eb;
            border-radius: 4px;
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .stats-cards {
                flex-direction: column;
            }
        }
        /* 3-Column Grid for Other Categories */
        .other-categories {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .category-section {
            margin-bottom: 30px;
        }
        /* Badge Styles */
        .badge {
            margin-left: 8px;
        }
        /* Button Styles */
        #loadRest {
            padding: 10px 20px;
            font-size: 1em;
            border: none;
            border-radius: 4px;
            background-color: #007BFF;
            color: #fff;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        #loadRest:hover {
            background-color: #0056b3;
        }

        /* Placeholder element for scroll loading */
        .lazy-sentinel {
            height: 1px;
        }


/* Styles from index.htm */
    .custom-button {
        border: 2px solid black;
        background-color: white;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        padding: 20px 20px;
        margin: 10px;
        text-align: center;
        text-decoration: none;
        color: black;
        font-size: 18px;
        transition: background-color 0.3s;
    }
    .custom-button:hover {
        background-color: #f0f0f0;
    }
        .custom-container .filter-container {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            gap: 10px;
            flex-wrap: wrap;
        }

        .custom-container .filter-container select,
        .custom-container .filter-container .btn {
            margin-left: auto;
        }

        .custom-container table {
            width: 100%;
            border-collapse: collapse;
            white-space: nowrap;
        }

        .custom-container table th, 
        .custom-container table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #e3f1d5;
        }

        .custom-container table th {
            background-color: #f3f4f6;
            font-size: 14px;
            text-transform: uppercase;
            position: sticky;
            top: 0;
            z-index: 1;
        }

        .custom-container .service-pill {
            display: inline-block;
            padding: .25em .6em;
            font-size: 75%;
            font-weight: 600;
            text-align: center;
            border-radius: 10rem;
            color: #fff;
            margin-right: 5px;
        }

        /* Specific Service Colors */
        .service-onlyfans { background-color: #FF4500; }
        .service-patreon { background-color: #0061F2; }
        .service-just-for-fans { background-color: #FFD700; }
        .service-independent { background-color: #6c757d; }
        .service-website { background-color: #2E8B57; }
        .service-clips4sale { background-color: #a22363; }
        .service-discord { background-color: #7289da; }
        .service-tumblr { background-color: #34526f; }
        .service-pornhub { background-color: #ff9900; }

        /* MediaCategory Pills */
        .category-pill {
            display: inline-block;
            padding: .25em .6em;
            font-size: 75%;
            font-weight: 600;
            text-align: center;
            border-radius: 10rem;
            color: #fff;
            margin-right: 5px;
        }

        /* Specific MediaCategory Colors */
        .category-audio { background-color: #1abc9c; }
        .category-anime { background-color: #e74c3c; }
        .category-book { background-color: #8e44ad; }
        .category-movie { background-color: #3498db; }
        .category-story { background-color: #f39c12; }
        .category-television { background-color: #d35400; }
        .category-theater { background-color: #2ecc71; }
        .category-shorts { background-color: #e67e22; }
        .category-documentary { background-color: #c0392b; }
        .category-video-game { background-color: #9b59b6; }
        .category-advertisement { background-color: #e74c3c; }
        .category-music { background-color: #2c3e50; }
        .category-article { background-color: #7f8c8d; }
        .category-photo { background-color: #34495e; }
        .category-video { background-color: #2980b9; }
        .category-other { background-color: #95a5a6; }
        .category-magazines { background-color: #bdc3c7; }

        .custom-container .pagination {
            justify-content: center;
            padding: 20px 0;
        }

        .badge-light {
            background-color: #f8f9fa;
            color: #6c757d;
            display: flex;
            align-items: center;
        }

        .status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 5px;
        }

        /* Status Colors */
        .status-draft { background-color: #6c757d; }
        .status-prereleased { background-color: #f0ad4e; }
        .status-new { background-color: #007bff; }
        .status-available { background-color: #28a745; }
        .status-nolonger { background-color: #dc3545; }
        .status-inactive { background-color: #ffc107; }

        /* Blur effect */
        #blur-overlay {
            transition: filter 0.3s ease-in-out;
        }

        /* Sorting icons */
        .sort-icon {
            margin-left: 5px;
            opacity: 0.6;
        }

        th.sorted-asc .sort-icon::after {
            content: '\2191'; /* Up arrow */
        }

        th.sorted-desc .sort-icon::after {
            content: '\2193'; /* Down arrow */
        }

        /* Hide certain columns on smaller screens */
        @media screen and (max-width: 768px) {
            .custom-container table th:nth-child(2),
            .custom-container table td:nth-child(2),
            .custom-container table th:nth-child(4),
            .custom-container table td:nth-child(4),
            .custom-container table th:nth-child(5),
            .custom-container table td:nth-child(5),
            .custom-container table th:nth-child(6),
            .custom-container table td:nth-child(6),
            .custom-container table th:nth-child(8),
            .custom-container table td:nth-child(8) {
                display: none;
            }
        }


/* Styles from stories.htm */
        .card-img-top {
            height: 225px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .card-img-top img {
            max-width: 100%;
            max-height: 225px;
            object-fit: cover;
        }
        .filter-dropdown {
            min-width: 150px;
            width: auto;
        }

        .form-select.form-control {
            display: inline-block;
            width: auto;
            flex: 1 1 auto;
        }

        /* Optional CSS to remove text decoration from links */
        a.text-decoration-none {
            text-decoration: none;
        }


/* Styles from messages.htm */
  .dm-thread { max-height:70vh; overflow-y:auto; border:1px solid var(--instagram-border); border-radius:12px; padding:1rem; background:#fff; }
  .dm-message-row { display:flex; margin-bottom:0.5rem; align-items:flex-end; }
  .dm-message-row.me { justify-content:flex-end; }
  .dm-avatar { width:32px; height:32px; border-radius:50%; margin:0 0.5rem; }
  .dm-message-bubble { padding:0.5rem 0.75rem; border-radius:18px; max-width:65%; font-size:0.9rem; }
  .dm-message-bubble.other { background:#efefef; color:var(--instagram-primary-text); }
  .dm-message-bubble.me { background:var(--instagram-blue); color:#fff; }


/* Styles from layouts/mpsfull.htm */
    :root {
      --gradient-start: #f3f6ff; --gradient-end: #ffffff;
      --primary-color: #6c63ff; --text-color: #333333;
      --sidebar-bg: #f8f9fa; --shadow: rgba(0,0,0,0.06);
      --border: #e6e6e6; --font: "Inter", sans-serif;
      --instagram-primary-text: #262626;
      --instagram-secondary-text: #8e8e8e;
      --instagram-blue: #0095f6;
      --instagram-border: #dbdbdb;
      --instagram-hover-bg: #fafafa;
      --primary-sidebar-width: 192px;
      --primary-sidebar-collapsed-width: 75px;
      --secondary-sidebar-width: 300px;
    }
    body.app-dashboard {
      background: linear-gradient(120deg,var(--gradient-start),var(--gradient-end));
      font-family: var(--font); overflow-x:hidden;
      padding-left: var(--primary-sidebar-width);
      transition:padding-left .3s;
    }
    @media(max-width:767.98px) {
      body.app-dashboard {padding-left: var(--primary-sidebar-collapsed-width);}
    }
    /* PRIMARY SIDEBAR */
    #sidebarMenu {
      position:fixed; top:0; left:0;
      width:var(--primary-sidebar-width); height:100vh;
      background:rgba(255,255,255,0.8);
      overflow-y:auto; overflow-x:hidden;
      transition:width .3s; z-index:999;
      border-right: 1px solid var(--border);
    }
    #sidebarMenu .sidebar-content {
      display:flex; flex-direction:column; min-height:100%;
    }
    .logo-container {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid var(--border);
    }
    .logo {max-width:60%; height:auto;}
    .logo-large {display:inline-block;}
    .logo-icon {display:none; max-width:38px; height:auto;}

    /* Search box under logo */
    .sidebar-search-form {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border);
    }
    .sidebar-search-form .form-control {
        border-radius: 20px; font-size: 0.9em;
    }

    #sidebarMenu .nav-link {
      position: relative;
      display:flex; align-items:center;
      padding:.65rem 1rem; margin:.25rem .5rem;
      color:var(--instagram-primary-text)!important;
      font-size:14px; font-weight:500;
      text-decoration:none; border-radius:8px;
      transition:background .2s, color .2s;
    }
    #sidebarMenu .nav-link:hover {background:var(--instagram-hover-bg);}
    #sidebarMenu .nav-link.active {
      background:var(--instagram-hover-bg);
      color:var(--primary-color)!important;
      font-weight:600;
      border-left:3px solid var(--primary-color);
    }
    #sidebarMenu .nav-link i {margin-right:10px; font-size: 1.25em;}

    .badge-counter {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      padding: 2px 6px;
      font-size: 0.75rem;
      background-color: var(--instagram-blue);
      color: #fff;
      border-radius: 10px;
    }
    @media(max-width:767.98px) {
      .badge-counter { right: 8px; }
    }

    @media(max-width:767.98px) { /* Changed breakpoint for more aggressive collapse */
      #sidebarMenu {width:var(--primary-sidebar-collapsed-width)!important;} /* Instagram-like narrow sidebar */
      .logo-large {display:none;}
      .logo-icon {display:inline-block; max-width:38px!important;}
      .sidebar-search-form { display: none; } /* Hide search form on collapsed sidebar */
      #sidebarMenu .nav-link .link-text {display:none!important;}
      #sidebarMenu .nav-link i {margin-right:0; font-size: 1.5em;}
      #sidebarMenu .nav-link {justify-content: center;}
      .account-info .user-details { display: none; }
    }
    /* ACCOUNT INFO */
    .account-info {
      margin-top:auto; padding:1rem;
      border-top:1px solid var(--border);
    }
    .account-info .avatar-link { /* Changed from #avatarTrigger */
      display:flex; align-items:center; justify-content: center;
      padding:.25rem .5rem!important;
      margin:.25rem auto!important;
      text-decoration: none;
    }
    .account-info .avatar-thumb {
      width:40px; height:40px; border-radius:50%;
      object-fit:cover; margin:0 auto .5rem;
      box-shadow:0 2px 5px var(--shadow);
    }
        .account-info .avatar-thumb {
            margin-right: 10px; margin-bottom: 0;
        }
        .account-info .user-details {
            display: flex; flex-direction: column;
            line-height: 1.2; text-align:left;
        }
        .account-info .user-name {
            font-weight: 500; font-size:0.9em; color: var(--text-color);
        }
        .account-info .user-username {
            font-size:0.8em; color: var(--instagram-secondary-text);
        }
    


    /* SECONDARY SIDEBAR */
    #secondarySidebar {
      position:fixed; top:0; left:var(--primary-sidebar-width); /* Default open position */
      width:var(--secondary-sidebar-width); /* Wider for Instagram DM style */
      height:100vh;
      background:var(--sidebar-bg);
      border-right: 1px solid var(--instagram-border);
      box-shadow: none; /* Removed default shadow, rely on border */
      overflow-y:auto; /* Content inside will scroll */
      transform:translateX(-100%); /* Default closed: completely off-screen */
      transition:transform .3s ease-in-out; z-index:998;
    }
    #secondarySidebar.open {transform:translateX(0);}
    #secondarySidebar .submenu-block {
        padding:0; height: 100%; display: flex; flex-direction: column;
    }
    #secondarySidebar .nav-link i {color:var(--primary-color);}
    #secondarySidebar .nav-link {color:var(--text-color)!important;}

    @media(max-width:767.98px) {
      #secondarySidebar {left:var(--primary-sidebar-collapsed-width)!important;}
    main#app-content {
      transition:margin-left .3s;
    }
}

    .submenu-header {
        padding: 1rem 1rem 0.5rem 1rem;
        border-bottom: 1px solid var(--instagram-border);
    }
    .submenu-title {
        font-size: 1.25rem; font-weight: 600;
        color: var(--instagram-primary-text); margin-bottom: 0.75rem;
    }

    /* --- Instagram DM Styles for submenu-messages --- */
    #submenu-messages .messages-header {
        padding: 1rem 1rem 0.5rem 1rem;
        border-bottom: 1px solid var(--instagram-border);
    }
    #submenu-messages .messages-title {
        font-size: 1.25rem; font-weight: 600;
        color: var(--instagram-primary-text); margin-bottom: 0.75rem;
    }
    #submenu-messages .message-tabs {
      display: flex;
      margin-bottom: 0.5rem; /* Reduced margin */
    }
    #submenu-messages .message-tabs .nav-link { /* Tab styling */
      font-size: 0.95rem; font-weight: 500;
      color: var(--instagram-secondary-text);
      padding: 0.5rem 0.75rem; margin-right: 0.5rem;
      border-bottom: 2px solid transparent;
      border-radius: 0; margin: 0 0.25rem;
      background: none !important; /* Override primary sidebar nav-link hover */
    }
    #submenu-messages .message-tabs .nav-link.active,
    #submenu-messages .message-tabs .nav-link:hover {
      color: var(--instagram-primary-text);
      border-bottom-color: var(--instagram-primary-text);
    }
    #submenu-messages .messages-search-input {
        width: 100%; padding: 0.5rem 0.75rem; font-size:0.9em;
        border: 1px solid var(--instagram-border); border-radius: 8px;
        margin-bottom: 0.5rem; background-color: #efefef;
    }
    #submenu-messages .message-list-container {
        overflow-y: auto; flex-grow: 1;
    }
    #submenu-messages .message-card {
      display: flex; align-items: center;
      padding: 0.75rem 1rem; text-decoration: none;
      border-bottom: 1px solid var(--instagram-border); /* Thin line like IG */
      transition: background-color 0.2s;
    }
    #submenu-messages .message-card:last-child {
        border-bottom: none;
    }
    #submenu-messages .message-card:hover {
      background-color: var(--instagram-hover-bg);
    }
    #submenu-messages .message-card-avatar img {
      width: 44px; height: 44px; border-radius: 50%;
      object-fit: cover; margin-right: 12px;
    }
    #submenu-messages .message-card-content {
      flex-grow: 1; overflow: hidden;
    }
    #submenu-messages .message-card .user-name {
      font-weight: 500; font-size:0.9rem;
      color: var(--instagram-primary-text); margin-bottom: 2px;
    }
    #submenu-messages .message-card .snippet,
    #submenu-messages .message-card .time-ago {
      font-size: 0.85rem; color: var(--instagram-secondary-text);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
     #submenu-messages .message-card .snippet.unread {
        font-weight: 600; color: var(--instagram-primary-text);
    }
    #submenu-messages .message-card-meta {
        display: flex; flex-direction: column; align-items: flex-end;
        margin-left: 8px;
    }
    #submenu-messages .message-card .time-ago {
         font-size: 0.75rem; margin-bottom: 4px;
    }
    #submenu-messages .unread-indicator {
      width: 8px; height: 8px; background-color: var(--instagram-blue);
      border-radius: 50%;
    }
    #submenu-messages .no-messages {
        padding: 2rem 1rem; text-align: center; color: var(--instagram-secondary-text);
        font-size: 0.9em;
    }

    /* Other existing styles */
    .badge.bg-danger {background-color:#dc3545;color:#fff;}
    .menu-section-header {
      margin:.5rem .5rem .25rem; font-size:.75rem;
      color:#666; text-transform:uppercase; letter-spacing:.05em;
    }


.submenu-block { display:none; }
#noMessagesFound { display:none; }
        body { background-color: #f5f5f5; }
        .account-container { margin-top: 20px; }
        /* … your existing inline styles … */
    .vh-100 {
      height: 100vh;
    }
    .h-custom-2 {
      height: 100%;
    }


  .bg-image-vertical {
    background-repeat: no-repeat;
    background-position: center; /* Center the background image */
    background-size: cover; /* Cover the entire container */
    transition: background-image 1s ease-in-out;
    background-image: url('/storage/app/media/AI/these-pregnant-men-are-pregnant-there-are-a-few-in-9LMWDHkmTwWG8oXhWa3i6A-0im2cz0cT0O07DDi9fVZCw.jpeg');
  }

  @media (max-width: 1024px) {
    .bg-image-vertical {
      height: 50vh; /* Reduce height on smaller screens */
      width: 100%; /* Take full width of the screen */
      float: none; /* Cancel any floating properties */
    }
    .logo-container {
      display: none; /* Hide the logo container on mobile devices */
    }
  }

  @media (min-width: 1025px) {
    .bg-image-vertical {
      width: 50%;
      float: right;
    }
  }





    .form-container {
      max-width: 600px; /* Adjust for larger screens */
      margin: auto;
    }
    .row.custom-flex-fill {
      flex: 1;
      padding: 0; /* Custom padding for this specific row */
      margin-bottom: 0; /* Updated margin-bottom to 0 */
    }
    .logo-container {
      text-align: center;
    }
    .logo-container img {
      max-width: 150px; /* Adjust size as needed */
      cursor: pointer;
    }
    .password-wrapper {
      position: relative;
    }
    .show-password {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
    }
    @media (min-width: 1025px) {
      .bg-image-vertical {
        width: 50%;
        float: right;
      }
    }
        body {
            background-color: #f5f5f5;
        }

        .account-container {
            margin-top: 20px;
        }

        /* Horizontal Navigation Tabs */
        .nav-pills {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
            border-bottom: 1px solid #ddd;
        }

        .nav-pills .nav-link {
            font-weight: bold;
            border-radius: 0.375rem 0.375rem 0 0;
            color: #6c757d;
            padding: 10px 15px;
            border: none;
            transition: background-color 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        .nav-pills .nav-link.active {
            background-color: #343a40;
            color: #fff;
            border-bottom: 3px solid #1d2124;
        }

        .tab-pane {
            padding-top: 20px;
        }

        .breadcrumb {
            border-radius: 0.375rem;
        }

        .card {
            border-radius: 0.375rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .card-body {
            text-align: left;
        }

        .media-card .card-title {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .media-card .card-subtitle {
            font-size: 1rem;
            color: #6c757d;
            margin-bottom: 1rem;
        }

        .media-card .card-text {
            margin-bottom: 0.5rem;
        }

        .card-footer {
            background-color: #f8f9fa;
            border-top: 1px solid #e9ecef;
            text-align: center;
            font-weight: bold;
        }

        .disabled-card {
            opacity: 0.6;
            pointer-events: none;
        }

        .progress {
            height: 25px;
            margin-bottom: 20px;
        }

        .progress-bar {
            background-color: #343a40;
        }

        .progress-bar-animated {
            animation: progress-bar-stripes 1s linear infinite;
        }

        .badge-pill {
            padding: 0.5em 1em;
            border-radius: 10rem;
        }

        table {
            width: 100%;
            margin-bottom: 20px;
            border-collapse: collapse;
        }

        th, td {
            padding: 10px;
            border: 1px solid #ddd;
        }

        th {
            background-color: #343a40;
            color: #fff;
            cursor: pointer;
        }

        td {
            background-color: #f8f9fa;
        }

        .support-text {
            font-size: 1rem;
            margin-bottom: 20px;
        }