/* Import Rubik font */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

/* Global font family */
* {
    font-family: 'Rubik', sans-serif;
}

/* Navigation Header Styles */
.llm-nav-header {
    position: fixed;
    top: 10px !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1300px;
}

.llm-nav-container {
    background: white;
    border-radius: 38px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: 'Rubik', sans-serif;
}

.llm-nav-item {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #02062B;
}

.llm-nav-center {
    flex: 1;
    justify-content: center;
}

.llm-nav-right {
    justify-content: flex-end;
}

.llm-nav-logo {
    height: var(--llm-nav-logo-height, 32px);
    width: var(--llm-nav-logo-width, 60px);
    object-fit: contain;
    padding: 4px;
}

.llm-nav-logo-text {
    font-weight: 600;
    color: #02062B;
    font-size: 16px;
}

.llm-nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.llm-nav-menu li {
    margin: 0;
    padding: 0;
}

.llm-nav-menu a {
    color: #02062B;
    text-decoration: none !important;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
    transition: color 0.2s ease;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.llm-nav-menu a:hover,
.llm-nav-menu a:focus {
    color: #2D2CFF;
    background: rgba(45, 44, 255, 0.1);
    text-decoration: none;
}

.llm-nav-menu li.current-menu-item a,
.llm-nav-menu li.current-page-ancestor a {
    color: #2D2CFF;
    text-decoration: none;
}

/* Mobile Hamburger Menu */
.llm-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 24px;
    height: 24px;
    justify-content: space-between;
    padding: 4px 0;
}

.llm-hamburger span {
    width: 100%;
    height: 2px;
    background-color: #02062B;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.llm-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 95vw;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: left 0.3s ease-in-out;
    padding: 40px 30px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.llm-mobile-menu.active {
    left: 0;
}

.llm-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.llm-mobile-close {
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: relative;
}

.llm-mobile-close::before,
.llm-mobile-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #02062B;
    top: 50%;
    left: 50%;
    border-radius: 2px;
}

.llm-mobile-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.llm-mobile-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.llm-mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.llm-mobile-menu-nav a {
    color: #02062B;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s ease;
}

.llm-mobile-menu-nav a:hover,
.llm-mobile-menu-nav a.current-menu-item {
    color: #2D2CFF;
}

/* Adjust main content to account for fixed header */
body.page-template-default {
    padding-top: 100px;
}

.llm-single-prompt {
    padding-top: 100px;
}

body.page-template-default {
    background-color: #f0f4ff;
    font-family: 'Rubik', sans-serif;
    height: 95vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    body.page-template-default {
        overflow: auto;
        height: auto;
        min-height: 100vh;
    }
}

/* Premium Library Overlay Styles */
.llm-premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.llm-premium-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
}

.llm-premium-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 24px 0;
}

.llm-premium-message {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 32px;
    white-space: pre-line;
}

.llm-premium-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.llm-premium-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
}

.llm-premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

.llm-back-button {
    display: block;
    padding: 12px 20px;
    background: #000;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 20px;
}

.llm-back-button:hover {
    background: #555;
    color: white;
}

.llm-back-button:focus {
    background: #555;
    color: white;
    outline: none;
}


.llm-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    background-color: #f0f4ff;
}

.llm-special-banner p {
    color: #fff;
}

.llm-login-form {
    border: 1px solid #e0e0e0;
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.llm-login-form h2 {
    margin-bottom: 20px;
    color: #02062B;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Rubik', sans-serif;
}

.llm-login-form p {
    margin-bottom: 30px;
    color: #666;
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
}

.llm-login-form input {
    width: 100% !important;
    padding: 15px 20px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important;
    margin-bottom: 24px !important;
    font-size: 16px !important;
    font-family: 'Rubik', sans-serif !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

.llm-login-form input:focus {
    outline: none !important;
    border-color: #2D2CFF !important;
}

.llm-password-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
}

.llm-password-wrapper input {
    width: 100% !important;
    padding: 15px 50px 15px 20px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-family: 'Rubik', sans-serif !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
    margin-bottom: 0 !important;
}

.llm-password-wrapper input:focus {
    outline: none !important;
    border-color: #2D2CFF !important;
}

.llm-password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 5px;
    color: #666;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.llm-password-toggle:hover {
    color: #2D2CFF;
}

.llm-password-toggle svg {
    width: 20px;
    height: 20px;
    transition: color 0.2s ease;
}

.llm-login-form button {
    width: 100% !important;
    padding: 15px !important;
    background: #2D2CFF !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    font-family: 'Rubik', sans-serif !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.llm-login-form button:hover {
    background: #1E1BFF !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 20px rgba(45, 44, 255, 0.3) !important;
}

.llm-error {
    color: #dc3545;
    margin-top: 20px;
    padding: 15px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 12px;
    font-family: 'Rubik', sans-serif;
}

.llm-info-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    border: 1px solid #2D2CFF;
    padding: 20px;
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: 0 4px 12px rgba(45, 44, 255, 0.1);
}

.llm-info-box h3 {
    margin: 0 0 12px 0;
    color: #2D2CFF;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.llm-info-box p {
    margin: 0;
    color: #02062B;
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
}

.llm-wp-login-btn {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background: #2D2CFF;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
    text-decoration: none !important;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.llm-wp-login-btn:hover {
    background: #1E1BFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 44, 255, 0.3);
    color: white;
    text-decoration: none;
}

.llm-dashboard {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 1600px;
    height: 85vh;
    background-color: #f0f4ff;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-bottom: 0;
    box-sizing: border-box;
    margin-top: 140px;
}

.llm-sidebar {
    width: 376px;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 25px;
    border: 2px solid #02062B1A;
    height: calc(85vh - 40px) !important;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

/* Sidebar header with logo and search */
.llm-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0;
}

.llm-logo {
    font-size: 18px;
    font-weight: 600;
    color: #02062B;
}

.llm-search-icon {
    width: 24px;
    height: 24px;
    color: #2D2CFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.llm-search-icon:hover {
    transform: scale(1.1);
}

/* Search overlay - appears within sidebar */
.llm-search-overlay {
    background: #fff;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.4s ease-out;
    animation: searchContentExpand 0.4s ease-out;
    margin-bottom: 10px;
}

.llm-search-overlay.show {
    max-height: 80px;
    padding: 5px 10px;
    opacity: 1;
}

.llm-search-container {
    width: 100%;
}

.llm-search-container input {
    width: 100%;
    border: none !important;
    outline: none !important;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    color: #02062B;
    background: transparent;
    padding: 5px 0;
}

.llm-search-container input::placeholder {
    color: #9ca3af;
}

@keyframes searchContentExpand {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Filter sections */
.llm-filter-section {
    margin-bottom: 15px;
}

.llm-filter-element {
    margin-bottom: 10px;
    transition: all 0.3s ease;
    overflow: visible;
}

.llm-filter-header {
    background: #fff;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    min-height: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.llm-filter-header:hover {
    background: #f8f9ff;
}

.llm-filter-icon {
    width: 20px;
    height: 20px;
    color: #2D2CFF;
    margin-right: 12px;
}

.llm-filter-title {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    color: #02062B;
    font-size: 14px;
    flex: 1;
}

.llm-filter-arrow {
    width: 16px;
    height: 16px;
    color: #666;
    transition: transform 0.3s ease;
}

.llm-filter-element.expanded .llm-filter-arrow {
    transform: rotate(180deg);
}

.llm-filter-content {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e0e0e0;
    margin-top: 8px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.llm-filter-element.expanded .llm-filter-content {
    max-height: 200px;
    padding: 20px 30px 20px 20px;
    opacity: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom scrollbar for filter content */
.llm-filter-content::-webkit-scrollbar {
    width: 6px;
}

.llm-filter-content::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 24px;
    margin: 18px;
}

.llm-filter-content::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 24px;
    border: 2px solid white;
    background-clip: padding-box;
}

.llm-filter-content::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
    background-clip: padding-box;
}

.llm-filter-content::-webkit-scrollbar-corner {
    background: transparent;
}

/* Ensure elements start collapsed */
.llm-filter-element:not(.expanded) .llm-filter-content {
    max-height: 0 !important;
    padding: 0 !important;
    opacity: 0;
    margin-top: 0;
}

.llm-filter-content select {
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
    margin-bottom: 0;
}

.llm-filter-content input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
    margin-bottom: 10px;
}

.llm-filter-content input[type="radio"],
.llm-filter-content input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 12px;
    height: 12px;
    border: 2px solid #2D2CFF;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    background: white;
    transition: all 0.2s ease;
}

.llm-filter-content input[type="checkbox"]:checked,
.llm-filter-content input[type="radio"]:checked {
    background: #2D2CFF;
    border-color: #2D2CFF;
}


/* Custom slider switch for video filter */
#llm-video-filter {
    appearance: none;
    -webkit-appearance: none;
    width: 50px;
    height: 26px;
    background: #e0e0e0;
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 !important;
}

#llm-video-filter:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#llm-video-filter:checked {
    background: #2d2cff;
}

#llm-video-filter:checked:before {
    transform: translateX(24px);
}

.llm-radio-label,
.llm-checkbox-label {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    color: #02062B;
    cursor: pointer;
    transition: all 0.2s ease;
}

.llm-user-section a {
    margin-top: 5px;
}

.llm-radio-label:hover,
.llm-checkbox-label:hover {
    color: #2D2CFF !important;
}

.llm-filter-description {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    margin-bottom: 0;
    line-height: 14px;
}

.llm-checkbox-container {
    max-height: 150px;
    overflow-y: auto;
}

.llm-checkbox-label {
    display: block;
    padding: 6px 0;
    font-weight: normal;
    cursor: pointer;
    font-size: 16px;
}

.llm-checkbox-label:hover {
    color: #0073aa;
}

.llm-hidden-checkboxes {
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
}

.llm-content {
    flex: 1;
    min-width: 900px;
    height: calc(85vh - 40px) !important;
    overflow-y: auto;
    padding-left: 20px;
}

/* Hide scrollbar completely */
.llm-content {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.llm-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.llm-header {
    margin-bottom: 30px;
    text-align: center;
}

.llm-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #02062B;
    font-family: 'Rubik', sans-serif;
}

.llm-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    font-family: 'Rubik', sans-serif;
}

.llm-prompts-feed {
    display: grid;
    grid-template-columns: 420px 420px;
    gap: 20px;
    margin-bottom: 30px;
    padding-right: 10px;
    width: 860px;
    max-width: 860px;
}


.llm-prompt-card {
    border: 1px solid #e0e0e0;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    aspect-ratio: 1;
    height: 280px;
    max-height: 280px;
    width: 420px;
    overflow: hidden;
}

.llm-prompt-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #2D2CFF;
}

.card-top {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
    flex: 1;
}

.llm-prompt-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.llm-prompt-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-heading {
    flex: 1;
}

.llm-prompt-tags {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.llm-topic-tag,
.llm-tag-tag,
.llm-single-topic,
.llm-single-tag {
    text-align: center;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    min-width: auto;
    width: auto;
    max-width: 150px;
    height: 20px;
    padding: 5px 10px;
    display: inline-flex;
    font-size: 11px;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

.llm-prompt-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    color: #02062B;
    line-height: 1.3;
    font-family: 'Rubik', sans-serif;
}

.card-detail {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    margin-top: auto;
}

.llm-prompt-description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
    flex: 1;
    font-family: 'Rubik', sans-serif;
}

.llm-prompt-arrow {
    width: 40px;
    height: 40px;
    background: #2D2CFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.llm-prompt-arrow:hover {
    background: #1E1BFF;
    transform: scale(1.1);
    color: white;
}

/* Pagination styles */
.llm-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    font-family: 'Rubik', sans-serif;
}

.llm-pagination-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #2D2CFF;
    background: white;
    color: #2D2CFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.llm-pagination-arrow:hover {
    background: #2D2CFF;
    color: white;
    transform: scale(1.1);
}

.llm-pagination-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.llm-pagination-arrow.disabled:hover {
    background: white;
    color: #2D2CFF;
    transform: none;
}

.llm-pagination-number {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    text-decoration: none !important;
}

.llm-pagination-number:hover {
    background: #f0f4ff;
    color: #2D2CFF;
}

.llm-pagination-number.active {
    background: #2D2CFF;
    color: white;
    font-weight: 600;
}

.llm-pagination-number.active:hover {
    background: #2D2CFF;
    color: white;
}

#llm-pagination-numbers {
    display: flex;
}

.llm-pagination-dots {
    color: #666;
    font-weight: 500;
    padding: 0 5px;
}

.llm-no-results {
    background: #f8f9fa;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    color: #666;
    font-size: 16px;
}

.llm-single-prompt {
    background-color: #F0F4FF;
    min-height: 100vh;
}

.llm-single-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}

.llm-single-header {
    /* padding: 40px 40px 30px; */
    color: #000;
    text-align: left;
}

.llm-library-name {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.llm-single-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #2d2cff;
}

.llm-single-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
}

.llm-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: start;
    justify-content: start;
}

.llm-single-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

.llm-single-video {
    padding: 0;
    margin-top: 40px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.llm-single-video iframe,
.llm-single-video video {
    width: 100%;
    height: 400px;
    border: none;
}

.llm-single-libraries{
    margin-bottom: 10px;
}

.llm-single-content {
    padding-top: 40px;
    text-align: left;
}

.llm-single-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    display: inline-block;
}

.llm-method-section {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.llm-method-header {
    padding: 15px 20px;
    background: #f8f9ff;
    border-bottom: 1px solid #e0e0e0;
}

.llm-method-header h3 {
    font-weight: 600;
    color: #02062B;
    font-size: 18px;
    margin: 0;
    font-family: 'Rubik', sans-serif;
}

.llm-method-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    padding: 20px;
}

/* Multiple Prompts Section - Match Method Box Styling */
.llm-prompt-section {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.llm-prompt-section .llm-prompt-header {
    padding: 15px 20px;
    background: #f8f9ff;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.llm-prompt-section .llm-prompt-header h3 {
    font-weight: 600;
    color: #02062B;
    font-size: 18px;
    margin: 0;
    font-family: 'Rubik', sans-serif;
}

.llm-prompt-section .llm-single-prompt-text {
    padding: 0 20px 20px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    background: white;
    white-space: pre-line;
    border: none;
    border-radius: 0;
}

.llm-method-content p {
    margin-bottom: 15px;
}

.llm-prompts-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.llm-prompt-box {
    background-color: #fff;
    border: .75px solid #ccc;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.llm-prompt-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 1px solid #e9ecef; */
}

.llm-prompt-number {
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.llm-copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.llm-copy-btn:focus {
    background-color: #fff;
    color: #000;
}

.llm-copy-btn:active {
    background-color: #fff;
    color: #000;
}

.llm-copy-btn:hover {
    background-color: #fff;
    color: #000;
}


.llm-copy-btn.copied {
    background: #fff;
    color: #000;
}

.llm-prompt-text {
    padding: 15px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #2d3748;
    background: white;
    white-space: pre-line;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
}


.llm-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
}

.llm-back-link:hover {
    color: #000;
}

/* User section at bottom */
.llm-user-section {
    background: #000;
    border-radius: 30px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.llm-user-info {
    display: flex;
    align-items: center;
    color: white;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
}

.llm-user-icon {
    width: 20px;
    height: 20px;
    background: #2D2CFF;
    border-radius: 50%;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.llm-logout-icon {
    width: 20px;
    height: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.llm-logout-icon:hover {
    color: #ff4444;
    transform: scale(1.1);
}

.llm-single-back-button {
    max-width: 234px;
    margin: 20px auto;
    padding: 12px 20px;
    background: #000;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.llm-single-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.llm-single-back-link:hover{
    color: #fff;
}

#menu-dashboard-1 li{
    list-style: none;
    padding: 10px;
}

#menu-dashboard-1 li a{
    text-decoration: none;
}


@media (max-width: 768px) {

    .llm-single-container {
        border-radius: 8px;
    }

    .llm-single-header {
        padding: 30px 25px 25px;
    }

    .llm-single-title {
        font-size: 24px;
    }

    .llm-single-description {
        font-size: 16px;
    }

    .llm-single-content {
        padding: 30px 25px;
    }

    .llm-single-content h2 {
        font-size: 20px;
    }

    .llm-prompt-section .llm-prompt-header {
        padding: 10px 20px;
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

    .llm-copy-btn {
        align-self: flex-end;
    }

    .llm-prompt-text {
        padding: 20px 15px;
        font-size: 14px;
    }

    .llm-back-button {
        padding: 20px 25px;
        width: 90vw;
        margin: 10px auto;
    }

    .llm-single-video iframe,
    .llm-single-video video {
        height: 250px;
    }

    .llm-prompt-tags{
        margin-bottom: 0;
    }

    .llm-method-content{
        padding-left: 40px;
    }
}

@media (max-width: 768px) {

    .llm-nav-container{
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
    }

    .llm-dashboard {
        flex-direction: column;
        gap: 20px;
        height: auto;
        min-height: calc(100vh - 40px);
        align-items: stretch;
        padding: 0;
        margin-top: 100px;
    }

    .llm-sidebar {
        width: 100%;
        height: auto;
        min-height: calc(90vh - 140px);
    }

    .llm-content {
        min-width: auto;
        height: auto;
        padding-left: 0;
        padding-bottom: 20px;
    }

    .llm-header h1 {
        font-size: 36px;
    }

    .card-top {
        flex-direction: column;
        align-items: center;
        text-align: left;
        gap: 15px;
    }

    .llm-prompt-image {
        width: 100%;
        max-width: 200px;
        height: 120px;
    }

    .card-detail {
        flex-direction: row;
        gap: 15px;
        text-align: center;
    }

    .llm-prompt-arrow {
        align-self: flex-end;
    }

    .llm-prompts-feed {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        max-height: none;
        padding-right: 0;
    }

    .llm-prompt-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
        aspect-ratio: auto;
    }

    /* Mobile Navigation */
    .llm-nav-menu {
        display: none;
    }

    .llm-hamburger {
        display: flex;
    }

    .llm-nav-header {
        top: 10px;
        width: calc(100% - 20px);
    }

    .llm-nav-container {
        padding: 8px 24px;
        border-radius: 25px;
    }
}