/*
Theme Name: Schrodingo Theme
Theme URI: https://www.schrodingo.in
Author: Schrodingo Team
Author URI: https://www.schrodingo.in
Description: A modern, responsive WordPress theme inspired by Schrodingo's educational platform. Features purple gradient backgrounds, clean white cards, and bold orange CTAs. Perfect for educational institutions, test prep platforms, and online learning websites.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: schrodingo-theme
Tags: education, modern, responsive, purple, gradient, custom-colors, blog

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* ===============================================
   RESET & BASE STYLES
   =============================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Schrodingo Brand Colors */
    --primary-purple: #7c3aed;
    --secondary-purple: #a78bfa;
    --accent-orange: #fb923c;
    --dark-purple: #5b21b6;
    --light-purple: #ddd6fe;
    
    /* Gradient */
    --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-purple: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f9fafb;
    --gray: #6b7280;
    --dark-gray: #374151;
    --black: #1f2937;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-primary);
    background: #f5f5f7;
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* ===============================================
   TYPOGRAPHY
   =============================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.875rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--gray);
    line-height: 1.7;
}

a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-orange);
}

/* ===============================================
   LAYOUT CONTAINERS
   =============================================== */

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
    padding: var(--spacing-xl) 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===============================================
   HEADER & NAVIGATION
   =============================================== */

.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.site-branding {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.site-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-title a {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-description {
    font-size: 0.875rem;
    color: var(--gray);
    font-style: italic;
}

.main-navigation {
    display: flex;
    gap: var(--spacing-lg);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: var(--spacing-lg);
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    color: var(--primary-purple);
    background: var(--light-purple);
}

.main-navigation .current-menu-item a {
    color: var(--primary-purple);
    background: var(--light-purple);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: var(--dark-purple);
}

/* ===============================================
   BUTTONS & CTAs
   =============================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #f97316;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-secondary {
    background: var(--primary-purple);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: var(--white);
}

/* ===============================================
   CARDS & CONTENT BOXES
   =============================================== */

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-lg);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    margin-bottom: var(--spacing-md);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.card-meta {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

.card-content {
    color: var(--gray);
    line-height: 1.7;
}

/* ===============================================
   BLOG / POSTS LAYOUT
   =============================================== */

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Blog Section */
.featured-section {
    background: transparent;
    border-radius: 0;
    padding: 2rem 0;
    margin-bottom: 3rem;
    box-shadow: none;
}

.featured-section h2 {
    color: var(--black);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.featured-card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.featured-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.featured-body {
    padding: 1.25rem;
}

.featured-badge {
    display: inline-block;
    background: var(--primary-purple);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.featured-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.featured-title a {
    color: var(--black);
    text-decoration: none;
}

.featured-title a:hover {
    color: var(--primary-purple);
}

.featured-meta {
    font-size: 0.813rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.read-full-story {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-decoration: none;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.read-full-story:hover {
    color: var(--accent-orange);
}

/* All Blogs Section */
.all-blogs-section h2 {
    color: var(--black);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: left;
    background: var(--white);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 0.75rem;
}

.post-card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: none;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.post-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.post-thumbnail-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-size: 3rem;
    font-weight: 700;
}

.post-content-wrapper {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--black);
    line-height: 1.4;
}

.post-title a {
    color: var(--black);
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--primary-purple);
}

.post-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-meta .post-category a {
    background: var(--primary-purple);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.post-meta .post-category a:hover {
    background: var(--accent-orange);
    color: var(--white);
}

.post-excerpt {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.read-more {
    color: var(--white);
    background: var(--primary-purple);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.625rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
}

.read-more:hover {
    background: var(--accent-orange);
    transform: translateX(5px);
    color: var(--white);
}

.read-more:hover {
    color: var(--accent-orange);
}

/* ===============================================
   SINGLE POST LAYOUT
   =============================================== */

.single-post-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.single-post {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-xl);
}

.single-post-header {
    margin-bottom: var(--spacing-xl);
}

.single-post-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.single-post-meta {
    display: flex;
    gap: var(--spacing-lg);
    font-size: 1rem;
    color: var(--gray);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--light-gray);
    flex-wrap: wrap;
}

.single-post-thumbnail {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xl);
}

.single-post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.single-post-content p {
    margin-bottom: var(--spacing-lg);
    color: var(--dark-gray);
}

.single-post-content h2 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.single-post-content h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
}

.single-post-content ul,
.single-post-content ol {
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-xl);
}

.single-post-content li {
    margin-bottom: var(--spacing-sm);
    color: var(--dark-gray);
}

/* ===============================================
   PAGINATION
   =============================================== */

.pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-2xl);
    flex-wrap: wrap;
}

.pagination .page-numbers {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-sm);
    color: var(--dark-gray);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===============================================
   FOOTER
   =============================================== */

.site-footer {
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    color: var(--light-gray);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
    margin-top: var(--spacing-2xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: var(--light-gray);
    margin-bottom: var(--spacing-sm);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--light-gray);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-orange);
    padding-left: var(--spacing-xs);
}

.footer-tagline {
    font-style: italic;
    color: var(--secondary-purple);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

/* ===============================================
   PAGE TEMPLATE
   =============================================== */

.page-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.page-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-xl);
}

.page-header {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 3px solid var(--primary-purple);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0;
}

/* ===============================================
   WIDGETS & SIDEBAR
   =============================================== */

.widget {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-purple);
}

/* ===============================================
   COMMENTS SECTION
   =============================================== */

.comments-area {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.comments-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    padding: var(--spacing-md);
    border-left: 3px solid var(--primary-purple);
    margin-bottom: var(--spacing-md);
    background: var(--light-gray);
    border-radius: var(--radius-sm);
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header {
        padding: 3rem 1.5rem !important;
    }
    
    .page-title {
        font-size: 2.25rem !important;
    }
}

@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Container padding for mobile */
    .container {
        padding: 0 1rem;
    }
    
    /* Header Navigation */
    .site-header .container {
        flex-wrap: wrap;
        padding: 1rem;
    }
    
    .site-branding {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
        width: 100%;
        order: 3;
    }
    
    .main-navigation.toggled {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        margin-top: var(--spacing-md);
    }
    
    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .main-navigation a {
        display: block;
        padding: var(--spacing-md);
    }
    
    /* Hero/Page Header */
    .page-header {
        padding: 2rem 1rem !important;
        margin-top: 0 !important;
    }
    
    .page-title {
        font-size: 1.75rem !important;
    }
    
    /* Featured Section */
    .featured-section {
        padding: 1rem 0;
    }
    
    .featured-section h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .featured-thumbnail {
        height: 200px;
    }
    
    .featured-body {
        padding: 1rem;
    }
    
    .featured-title {
        font-size: 1rem;
    }
    
    /* All Blogs Section */
    .all-blogs-section h2 {
        font-size: 1.5rem !important;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .post-thumbnail,
    .post-thumbnail-placeholder {
        height: 180px;
    }
    
    .post-content-wrapper {
        padding: 1rem;
    }
    
    .post-title {
        font-size: 1.125rem;
    }
    
    .post-meta {
        font-size: 0.813rem;
        gap: 0.5rem;
    }
    
    .read-more {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    /* Single Post */
    .single-post-title {
        font-size: 1.75rem;
    }
    
    .single-post {
        padding: 1.5rem;
    }
    
    .single-post-content {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .site-footer {
        padding: 2rem 0 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ===============================================
   UTILITY CLASSES
   =============================================== */

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.hidden {
    display: none;
}

/* ===============================================
   ANIMATIONS
   =============================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ===============================================
   ACCESSIBILITY
   =============================================== */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--light-gray);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    clip: auto !important;
    color: var(--primary-purple);
    display: block;
    font-size: 1rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
