.main-wrapper {
            width: 100%;
            height: 100%;
            background: white;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: inline-flex;
        }

        .page-container {
            align-self: stretch;
            min-height: 800px;
            background: white;
            overflow: hidden;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: flex;
        }

        .section-container {
            align-self: stretch;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: flex;
        }

        .header-container {
            align-self: stretch;
            padding-left: 40px;
            padding-right: 40px;
            padding-top: 12px;
            padding-bottom: 12px;
            border-bottom: 1px #E5E8EB solid;
            justify-content: space-between;
            align-items: center;
            display: inline-flex;
        }

        .header-left-group {
            justify-content: flex-start;
            align-items: center;
            gap: 32px;
            display: flex;
        }

        .logo-group {
            justify-content: flex-start;
            align-items: center;
            gap: 16px;
            display: flex;
        }

        .logo-icon-wrapper {
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: inline-flex;
        }

        .logo-icon {
            width: 16px;
            flex: 1 1 0;
            position: relative;
            overflow: hidden;
        }

        .logo-icon-bg {
            width: 16px;
            height: 16px;
            left: 0px;
            top: 0px;
            position: absolute;
            background: #121417;
        }

        .logo-text {
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: inline-flex;
        }

        .logo-text-style {
            color: #121417;
            font-size: 18px;
            font-family: Newsreader;
            font-weight: 700;
            line-height: 23px;
            word-wrap: break-word;
        }

        .nav-links-group {
            justify-content: flex-start;
            align-items: center;
            gap: 36px;
            display: flex;
        }

        .nav-link-wrapper {
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: inline-flex;
        }

        .nav-link-text {
            color: #121417;
            font-size: 14px;
            font-family: Newsreader;
            font-weight: 500;
            line-height: 21px;
            word-wrap: break-word;
        }

        .header-right-group {
            flex: 1 1 0;
            justify-content: flex-end;
            align-items: center; /* Changed to center for vertical alignment */
            gap: 32px;
            display: flex;
        }

        .search-bar-wrapper {
            max-width: 256px;
            min-width: 160px;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: inline-flex;
        }

        .search-bar-inner {
            align-self: stretch;
            flex: 1 1 0;
            border-radius: 12px;
            justify-content: flex-start;
            align-items: flex-start;
            display: inline-flex;
        }

        .search-icon-wrapper {
            flex: 1 1 0;
            height: 24px;
            position: relative;
            overflow: hidden;
        }

        .search-icon-bg {
            width: 24px;
            height: 24px;
            left: 0px;
            top: 0px;
            position: absolute;
            background: #61758A;
        }

       .search-input-container {
            flex: 1 1 0;
            align-self: stretch;
            padding: 8px 12px; /* Adjusted padding for better spacing */
            background: #F0F2F5;
            overflow: hidden;
            border-radius: 12px; /* Added border-radius */
            justify-content: flex-start;
            align-items: center;
            display: flex;
            gap: 8px; /* Added gap between icon and input */
        }

        .search-input-container i { /* Style for the search icon */
            color: #61758A;
            font-size: 20px;
        }

        .search-input-text {
            flex: 1; /* Make input fill available space */
            color: #121417; /* Changed text color for better contrast */
            font-size: 16px;
            font-family: Newsreader;
            font-weight: 400;
            line-height: 24px;
            word-wrap: break-word;
            border: none; /* Removed default border */
            outline: none; /* Removed default outline */
            background: transparent; /* Make background transparent */
        }

        .search-input-text::placeholder { /* Style for placeholder text */
            color: #61758A;
            opacity: 1; /* Ensure placeholder is visible */
        }

        .user-actions-group {
            justify-content: flex-start;
            align-items: flex-start;
            gap: 8px;
            display: flex;

        }

        .action-button {
            height: 40px;
            max-width: 480px;
            padding-left: 10px;
            padding-right: 10px;
            background: #F0F2F5;
            overflow: hidden;
            border-radius: 20px;
            justify-content: center;
            align-items: center;
            gap: 8px;
            display: flex;
        }

        .action-icon-wrapper {
            flex: 1 1 0;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            display: inline-flex;
        }

        .action-icon-inner {
            align-self: stretch;
            flex: 1 1 0;
            position: relative;
            overflow: hidden;
        }

        .action-icon-bg {
            width: 20px;
            height: 20px;
            left: 0px;
            top: 0px;
            position: absolute;
            background: #121417;
        }

        .profile-pic {
            width: 40px;
            height: 40px;
            position: relative;
            border-radius: 20px;
        }

        .content-area {
            align-self: stretch;
            flex: 1 1 0;
            justify-content: center;
            align-items: flex-start;
            display: inline-flex;
        }

        .content-inner-wrapper {
            flex: 1 1 0;
            max-width: 960px;
            overflow: hidden;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: inline-flex;
        }

        .category-row {
            align-self: stretch;
            justify-content: flex-start;
            align-items: flex-start;
            display: inline-flex;
        }

        .category-card-padding {
            padding: 16px;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 12px;
            display: flex;
            overflow: auto;
        }

        .category-card-padding::-webkit-scrollbar{
            display: none;
        }

        .category-card {
            flex: 1 1 0;
            align-self: stretch;
            min-width: 240px;
            border-radius: 8px;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 16px;
            display: inline-flex;
        }

        .category-image {
            align-self: stretch;
            height: 158px;
            position: relative;
            border-radius: 12px;
        }

        .category-text-container {
            align-self: stretch;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: flex;
        }

        .category-title {
            align-self: stretch;
            color: #121417;
            font-size: 16px;
            font-family: Newsreader;
            font-weight: 500;
            line-height: 24px;
            word-wrap: break-word;
        }

        .section-header-container {
            align-self: stretch;
            padding-top: 20px;
            padding-bottom: 12px;
            padding-left: 16px;
            padding-right: 16px;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: flex;
        }

        .section-title {
            align-self: stretch;
            color: #121417;
            font-size: 22px;
            font-family: Newsreader;
            font-weight: 700;
            line-height: 28px;
            word-wrap: break-word;
        }

        .book-row {
            align-self: stretch;
            justify-content: flex-start;
            align-items: flex-start;
            display: inline-flex;
        }

        .book-card-padding {
            padding: 16px;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 12px;
            display: flex;
            overflow-x: auto;
        }

        .book-card-padding::-webkit-scrollbar{
            display: none;
        }

        .book-card {
            flex: 1 1 0;
            align-self: stretch;
            min-width: 160px;
            border-radius: 8px;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 16px;
            display: inline-flex;
        }

        .book-image-large {
            align-self: stretch;
            height: 297px;
            position: relative;
            border-radius: 12px;
            object-fit: cover;
        }

        .book-image-medium {
            align-self: stretch;
            height: 213px;
            position: relative;
            border-radius: 12px;
        }

        .book-image-audio {
            align-self: stretch;
            height: 263px;
            position: relative;
            border-radius: 12px;
        }

        .book-image-business {
            align-self: stretch;
            height: 243px;
            position: relative;
            border-radius: 12px;
        }

        .book-image-fiction {
            align-self: stretch;
            height: 227px;
            position: relative;
            border-radius: 12px;
        }

        .book-image-selfhelp {
            align-self: stretch;
            height: 242px;
            position: relative;
            border-radius: 12px;
        }

        .book-title-container {
            align-self: stretch;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: flex;
        }

        .book-title {
            align-self: stretch;
            color: #121417;
            font-size: 16px;
            font-family: Newsreader;
            font-weight: 500;
            line-height: 24px;
            word-wrap: break-word;
        }

        .promo-card-container {
            align-self: stretch;
            padding: 16px;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: flex;
            overflow: auto;
        }
        .promo-card-container::-webkit-scrollbar{
            display: none;
        }

        .promo-card {
            align-self: stretch;
            border-radius: 12px;
            justify-content: flex-start;
            align-items: flex-start;
            display: inline-flex;
        }

        .promo-image {
            flex: 1 1 0;
            height: 256px;
            position: relative;
            border-radius: 12px;
            max-width: 100%;
        }

        .promo-text-content {
            flex: 1 1 0;
            min-width: 288px;
            padding: 16px;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 4px;
            display: inline-flex;
        }

        .promo-title-container {
            align-self: stretch;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: flex;
        }

        .promo-title {
            align-self: stretch;
            color: #121417;
            font-size: 18px;
            font-family: Newsreader;
            font-weight: 700;
            line-height: 23px;
            word-wrap: break-word;
        }

        .promo-details-group {
            align-self: stretch;
            justify-content: space-between;
            align-items: flex-end;
            display: inline-flex;
        }

        .promo-description-group {
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 4px;
            display: inline-flex;
        }

        .promo-description-line {
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: flex;
        }

        .promo-description-text {
            color: #61758A;
            font-size: 16px;
            font-family: Newsreader;
            font-weight: 400;
            line-height: 24px;
            word-wrap: break-word;
        }

        .promo-offer-text-wrapper {
            width: 296px;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: flex;
        }

        .promo-offer-text-wrapper-alt {
            width: 292px;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: flex;
        }


        .footer-outer-wrapper {
            align-self: stretch;
            justify-content: center;
            align-items: flex-start;
            display: inline-flex;
        }

        .footer-inner-wrapper {
            flex: 1 1 0;
            max-width: 960px;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            display: inline-flex;
        }

        .footer-content {
            align-self: stretch;
            flex: 1 1 0;
            padding-left: 20px;
            padding-right: 20px;
            padding-top: 40px;
            padding-bottom: 40px;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 24px;
            display: flex;
        }

        .footer-links-row {
            align-self: stretch;
            justify-content: space-between;
            align-items: center;
            display: inline-flex;
            flex-wrap: wrap;
            align-content: center;
        }

        .footer-link-column {
            width: 160px;
            min-width: 160px;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            display: inline-flex;
        }

        .footer-link-text {
            align-self: stretch;
            text-align: center;
            color: #61758A;
            font-size: 16px;
            font-family: Newsreader;
            font-weight: 400;
            line-height: 24px;
            word-wrap: break-word;
        }

        .social-icons-row {
            align-self: stretch;
            justify-content: center;
            align-items: flex-start;
            gap: 16px;
            display: inline-flex;
            flex-wrap: wrap;
            align-content: flex-start;
        }

        .social-icon-column {
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            display: inline-flex;
        }

        .social-icon-wrapper {
            flex: 1 1 0;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            display: flex;
        }

        .social-icon-inner {
            width: 24px;
            flex: 1 1 0;
            position: relative;
            overflow: hidden;
        }

        .social-icon-bg {
            width: 24px;
            height: 24px;
            left: 0px;
            top: 0px;
            position: absolute;
            background: #61758A;
        }

        .copyright-container {
            align-self: stretch;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            display: flex;
        }

        .copyright-text {
            align-self: stretch;
            text-align: center;
            color: #61758A;
            font-size: 16px;
            font-family: Newsreader;
            font-weight: 400;
            line-height: 24px;
            word-wrap: break-word;
        }

        @media (max-width: 768px) {
            .header-container {
                padding-left: 20px;
                padding-right: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .header-left-group, .header-right-group {
                flex-direction: column;
                gap: 16px;
                align-items: center;
                width: 100%;
            }
            .nav-links-group {
                flex-wrap: wrap;
                justify-content: center;
                gap: 16px;
            }
            .search-bar-wrapper {
                max-width: 100%;
                min-width: unset;
                width: 100%;
            }

        }

        @media (max-width: 480px) {
            .category-card, .book-card {
                width: 95%;
            }
            .nav-links-group{
                display: none;
            }
        }
