/**
 * Seyrengiz Kitap Kulübü Özel Stil Dosyası
 * Bu dosyadaki stiller WordPress teması ile çakışmaları önlemek için '#seyr-book-club-app' kapsamı altındadır.
 */

#seyr-book-club-app {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--seyr-bg);
    color: var(--seyr-text-main);
    transition: background 0.4s, color 0.4s;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

/* Açık Tema Seçilirse veya Miras Alınırsa */
#seyr-book-club-app.light-theme {
    background: var(--seyr-bg) !important;
    color: var(--seyr-text-main) !important;
}

/* Başlıklar İçin Özel Yazı Tipi */
#seyr-book-club-app h1, 
#seyr-book-club-app h2, 
#seyr-book-club-app h3, 
#seyr-book-club-app h4, 
#seyr-book-club-app .font-outfit {
    font-family: 'Outfit', sans-serif;
}

/* Özel Kaydırma Çubuğu */
#seyr-book-club-app .custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
#seyr-book-club-app .custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}
#seyr-book-club-app .custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
#seyr-book-club-app.light-theme .custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
}
#seyr-book-club-app .custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--seyr-accent);
}

/* Glassmorphism Paneller */
#seyr-book-club-app .glass-panel {
    background: var(--seyr-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--seyr-card-border);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: border-color 0.3s, box-shadow 0.3s;
}

#seyr-book-club-app .glass-panel:hover {
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.05);
}

/* Kitap Kapağı 3D Efekti */
#seyr-book-club-app .book-cover-container {
    position: relative;
    width: 190px;
    height: 270px;
    perspective: 1000px;
    flex-shrink: 0;
}

#seyr-book-club-app .book-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border: 1px solid var(--seyr-card-border);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    transform-style: preserve-3d;
}

#seyr-book-club-app .book-cover-container:hover .book-cover-img {
    transform: rotateY(-12deg) translateZ(10px);
    box-shadow: 15px 20px 45px rgba(0,0,0,0.5);
}

#seyr-book-club-app .ambient-glow {
    position: absolute;
    width: 120px;
    height: 180px;
    background: var(--seyr-accent);
    opacity: 0.15;
    filter: blur(50px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s;
}

#seyr-book-club-app .book-cover-container:hover .ambient-glow {
    opacity: 0.25;
}

/* Premium Girdi Elemanları */
#seyr-book-club-app .premium-input {
    background: var(--seyr-input-bg) !important;
    border: 1px solid var(--seyr-card-border) !important;
    color: var(--seyr-text-main) !important;
    border-radius: 14px !important;
    transition: all 0.3s !important;
}
#seyr-book-club-app .premium-input:focus {
    outline: none !important;
    border-color: var(--seyr-accent) !important;
    box-shadow: 0 0 15px var(--seyr-glow) !important;
}

/* Premium Butonlar */
#seyr-book-club-app .premium-btn {
    background: var(--seyr-accent) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
    transition: all 0.3s !important;
    border: none !important;
    box-shadow: 0 4px 15px var(--seyr-glow) !important;
}
#seyr-book-club-app .premium-btn:hover:not(:disabled) {
    background: var(--seyr-accent-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25) !important;
}
#seyr-book-club-app .premium-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Sekme Butonları */
#seyr-book-club-app .tab-btn {
    position: relative;
    color: var(--seyr-text-muted);
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    padding-bottom: 4px;
}
#seyr-book-club-app .tab-btn.active {
    color: var(--seyr-text-main);
}
#seyr-book-club-app .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--seyr-accent);
    border-radius: 2px;
    box-shadow: 0 2px 10px var(--seyr-glow);
}

/* Arka Plan Glow Grafik Efektleri */
#seyr-book-club-app .bg-glow-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

#seyr-book-club-app .bg-glow-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

/* WordPress Tema Çakışmalarına Karşı İyileştirmeler */
#seyr-book-club-app input[type="text"], 
#seyr-book-club-app input[type="number"], 
#seyr-book-club-app input[type="date"], 
#seyr-book-club-app textarea {
    font-size: 14px;
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
}

#seyr-book-club-app textarea {
    min-height: 60px;
}

#seyr-book-club-app header a, 
#seyr-book-club-app header button {
    text-decoration: none;
}

/* ================= THEMES ================= */
body.theme-forest-green,
body:not([class*="theme-"]) {
    /* Landing Page Değişkenleri */
    --lp-body-bg: #03100a;
    --lp-bg: radial-gradient(circle at top right, #0d3823 0%, #082416 60%, #03100a 100%);
    --lp-text-main: #f1f5f2;
    --lp-text-muted: #8fa495;
    --lp-text-slate-500: #718878;
    --lp-text-slate-300: #c9d6cc;
    --lp-panel-bg: rgba(8, 36, 22, 0.65);
    --lp-panel-border: rgba(255, 255, 255, 0.08);
    --lp-card-bg: rgba(8, 36, 22, 0.45);
    --lp-card-border: rgba(255, 255, 255, 0.06);
    --lp-glow-1: rgba(162, 185, 165, 0.12);
    --lp-glow-2: rgba(212, 175, 55, 0.08);
    --lp-accent: #f59e0b;
    --lp-accent-hover: #d97706;
    --lp-slider-bg: #03100a;
    --lp-slider-overlay-solid: rgba(3, 16, 10, 0.95);
    --lp-slider-overlay-trans: rgba(3, 16, 10, 0.4);
    --lp-slider-overlay-trans2: rgba(3, 16, 10, 0.6);

    /* Kitap Kulübü App Değişkenleri */
    --seyr-bg: radial-gradient(circle at top right, #0d3823 0%, #082416 60%, #03100a 100%);
    --seyr-card-bg: rgba(8, 36, 22, 0.65);
    --seyr-card-border: rgba(255, 255, 255, 0.08);
    --seyr-text-main: #f1f5f2;
    --seyr-text-muted: #8fa495;
    --seyr-accent: #f59e0b;
    --seyr-accent-hover: #d97706;
    --seyr-meta-border: rgba(245, 158, 11, 0.2);
    --seyr-glow: rgba(245, 158, 11, 0.1);
    --seyr-chat-bubble-bg: rgba(13, 56, 35, 0.5);
    --seyr-input-bg: rgba(4, 16, 10, 0.6);
}

body.theme-deep-burgundy {
    /* Landing Page Değişkenleri */
    --lp-body-bg: #150308;
    --lp-bg: radial-gradient(circle at top right, #400d1d 0%, #20050d 60%, #150308 100%);
    --lp-text-main: #faeef1;
    --lp-text-muted: #cfa8b2;
    --lp-text-slate-500: #9e737e;
    --lp-text-slate-300: #e8d0d6;
    --lp-panel-bg: rgba(32, 5, 13, 0.65);
    --lp-panel-border: rgba(255, 255, 255, 0.08);
    --lp-card-bg: rgba(32, 5, 13, 0.45);
    --lp-card-border: rgba(255, 255, 255, 0.06);
    --lp-glow-1: rgba(207, 168, 178, 0.1);
    --lp-glow-2: rgba(245, 158, 11, 0.08);
    --lp-accent: #f59e0b;
    --lp-accent-hover: #d97706;
    --lp-slider-bg: #150308;
    --lp-slider-overlay-solid: rgba(21, 3, 8, 0.95);
    --lp-slider-overlay-trans: rgba(21, 3, 8, 0.4);
    --lp-slider-overlay-trans2: rgba(21, 3, 8, 0.6);

    /* Kitap Kulübü App Değişkenleri */
    --seyr-bg: radial-gradient(circle at top right, #400d1d 0%, #20050d 60%, #150308 100%);
    --seyr-card-bg: rgba(32, 5, 13, 0.65);
    --seyr-card-border: rgba(255, 255, 255, 0.08);
    --seyr-text-main: #faeef1;
    --seyr-text-muted: #cfa8b2;
    --seyr-accent: #f59e0b;
    --seyr-accent-hover: #d97706;
    --seyr-meta-border: rgba(245, 158, 11, 0.2);
    --seyr-glow: rgba(245, 158, 11, 0.1);
    --seyr-chat-bubble-bg: rgba(32, 5, 13, 0.5);
    --seyr-input-bg: rgba(21, 3, 8, 0.6);
}

body.theme-warm-parchment {
    /* Landing Page Değişkenleri */
    --lp-body-bg: #eae3cf;
    --lp-bg: radial-gradient(circle at top right, #fdfcf9 0%, #f7f4ec 60%, #eae3cf 100%);
    --lp-text-main: #1f2421;
    --lp-text-muted: #5c635e;
    --lp-text-slate-500: #7a827c;
    --lp-text-slate-300: #3c423e;
    --lp-panel-bg: rgba(255, 255, 255, 0.75);
    --lp-panel-border: rgba(0, 0, 0, 0.08);
    --lp-card-bg: rgba(255, 255, 255, 0.6);
    --lp-card-border: rgba(0, 0, 0, 0.06);
    --lp-glow-1: rgba(180, 83, 9, 0.05);
    --lp-glow-2: rgba(0, 0, 0, 0.03);
    --lp-accent: #b45309;
    --lp-accent-hover: #92400e;
    --lp-slider-bg: #eae3cf;
    --lp-slider-overlay-solid: rgba(234, 227, 207, 0.95);
    --lp-slider-overlay-trans: rgba(234, 227, 207, 0.4);
    --lp-slider-overlay-trans2: rgba(234, 227, 207, 0.6);

    /* Kitap Kulübü App Değişkenleri */
    --seyr-bg: radial-gradient(circle at top right, #fdfcf9 0%, #f7f4ec 60%, #eae3cf 100%);
    --seyr-card-bg: rgba(255, 255, 255, 0.75);
    --seyr-card-border: rgba(0, 0, 0, 0.08);
    --seyr-text-main: #1f2421;
    --seyr-text-muted: #5c635e;
    --seyr-accent: #b45309;
    --seyr-accent-hover: #92400e;
    --seyr-meta-border: rgba(180, 83, 9, 0.2);
    --seyr-glow: rgba(180, 83, 9, 0.05);
    --seyr-chat-bubble-bg: rgba(255, 255, 255, 0.5);
    --seyr-input-bg: rgba(234, 227, 207, 0.6);
}

/* Landing Page Özel Stilleri */
#seyr-landing-page {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--lp-bg) !important;
    color: var(--lp-text-main) !important;
    transition: background 0.4s ease, color 0.4s ease;
    border-radius: 0;
    min-height: 100vh;
}

#seyr-landing-page .glass-panel {
    background: var(--lp-panel-bg) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid var(--lp-panel-border) !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    transition: background 0.4s ease, border-color 0.4s ease;
}

#seyr-landing-page .glass-feature-card {
    background: var(--lp-card-bg) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid var(--lp-card-border) !important;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s, background 0.4s ease;
}

#seyr-landing-page .glass-feature-card:hover {
    transform: translateY(-3px) !important;
    border-color: var(--lp-accent) !important;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.03) !important;
}

#seyr-landing-page .bg-glow-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--lp-glow-1) 0%, rgba(162, 185, 165, 0) 70%) !important;
    pointer-events: none;
    z-index: 1;
    transition: background 0.4s ease;
}

#seyr-landing-page .bg-glow-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--lp-glow-2) 0%, rgba(212, 175, 55, 0) 70%) !important;
    pointer-events: none;
    z-index: 1;
    transition: background 0.4s ease;
}

#seyr-landing-page .seyr-slider-wrapper {
    background: var(--lp-slider-bg) !important;
    transition: background 0.4s ease;
}

#seyr-landing-page .seyr-slide-overlay {
    background: linear-gradient(
        to top,
        var(--lp-slider-overlay-solid) 0%,
        var(--lp-slider-overlay-trans) 50%,
        var(--lp-slider-overlay-trans2) 100%
    ) !important;
    transition: background 0.4s ease;
}

#seyr-landing-page .book-cover-container {
    position: relative;
    width: 170px;
    height: 245px;
    perspective: 1000px;
    flex-shrink: 0;
}

#seyr-landing-page .book-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.45) !important;
    border: 1px solid var(--lp-card-border) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    transform-style: preserve-3d;
}

#seyr-landing-page .book-cover-container:hover .book-cover-img {
    transform: rotateY(-12deg) translateZ(10px) !important;
    box-shadow: 15px 18px 38px rgba(0,0,0,0.55) !important;
}

#seyr-landing-page .ambient-glow {
    position: absolute;
    width: 110px;
    height: 160px;
    background: var(--lp-accent);
    opacity: 0.15;
    filter: blur(45px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s, background 0.4s ease;
}

#seyr-landing-page .book-cover-container:hover .ambient-glow {
    opacity: 0.25;
}

#seyr-landing-page .premium-btn {
    background: var(--lp-accent) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
    transition: all 0.3s !important;
    border: none !important;
    box-shadow: 0 4px 15px var(--lp-glow-2) !important;
    text-decoration: none !important;
}

#seyr-landing-page .premium-btn:hover {
    background: var(--lp-accent-hover) !important;
    transform: translateY(-2px) !important;
}

/* Tailwind Metin Renk Ezicileri */
#seyr-landing-page .text-slate-400 {
    color: var(--lp-text-muted) !important;
}
#seyr-landing-page .text-slate-500 {
    color: var(--lp-text-slate-500) !important;
}
#seyr-landing-page .text-slate-300 {
    color: var(--lp-text-slate-300) !important;
}

/* Light Theme (Parchment) için özel contrast düzeltmeleri */
body.theme-warm-parchment #seyr-landing-page .text-white {
    color: #1f2421 !important;
}
body.theme-warm-parchment #seyr-landing-page header span.text-white {
    color: #1f2421 !important;
}
body.theme-warm-parchment #seyr-landing-page .premium-btn span {
    color: #ffffff !important;
}
body.theme-warm-parchment #seyr-landing-page .seyr-btn {
    background: #1f2421 !important;
    color: #ffffff !important;
}
body.theme-warm-parchment #seyr-landing-page .seyr-btn:hover {
    background: var(--lp-accent) !important;
}
body.theme-warm-parchment #seyr-landing-page .seyr-arrow {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: rgba(0, 0, 0, 0.6) !important;
}
body.theme-warm-parchment #seyr-landing-page .seyr-arrow:hover {
    background: var(--lp-accent) !important;
    color: #ffffff !important;
}
body.theme-warm-parchment #seyr-landing-page .seyr-dot {
    background: rgba(0, 0, 0, 0.15) !important;
}
body.theme-warm-parchment #seyr-landing-page .seyr-dot.seyr-active {
    background: var(--lp-accent) !important;
}
body.theme-warm-parchment #seyr-landing-page .seyr-title {
    color: #1f2421 !important;
}
body.theme-warm-parchment #seyr-landing-page .seyr-tag {
    background: rgba(180, 83, 9, 0.1) !important;
    color: var(--lp-accent) !important;
    border-color: rgba(180, 83, 9, 0.2) !important;
}

/* ==========================================
   SEYR HOME-2 DASHBOARD UNIQUE LIGHT-BLUE STYLES
   ========================================== */
body:has(#seyr-home-2-app) {
    background: #ffffff !important;
}

#seyr-home-2-app, 
#seyr-home-2-app * {
    box-sizing: border-box !important;
}

#seyr-home-2-app {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #ffffff !important; /* White background */
    color: #1e293b !important; /* Slate 800 */
    min-height: 100vh;
}

#seyr-home-2-app h1, 
#seyr-home-2-app h2, 
#seyr-home-2-app h3, 
#seyr-home-2-app h4, 
#seyr-home-2-app .font-outfit {
    font-family: 'Outfit', sans-serif;
}

/* Custom Scrollbar for Home-2 */
#seyr-home-2-app .custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
#seyr-home-2-app .custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}
#seyr-home-2-app .custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(14, 165, 233, 0.2);
    border-radius: 4px;
}
#seyr-home-2-app .custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #0ea5e9; /* Sky 500 */
}

/* Book Cover 3D Effect */
#seyr-home-2-app .book-cover-container {
    position: relative;
    width: 170px;
    height: 245px;
    perspective: 1000px;
    flex-shrink: 0;
}

#seyr-home-2-app .book-cover-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    transform-style: preserve-3d;
}

#seyr-home-2-app .book-cover-container:hover .book-cover-img {
    transform: rotateY(-12deg) translateZ(10px) !important;
    box-shadow: 15px 18px 38px rgba(0,0,0,0.2) !important;
}

#seyr-home-2-app .ambient-glow {
    position: absolute;
    width: 110px;
    height: 160px;
    background: #0ea5e9;
    opacity: 0.15;
    filter: blur(45px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s;
}

#seyr-home-2-app .book-cover-container:hover .ambient-glow {
    opacity: 0.25;
}

/* Tabs styling in active discussion */
#seyr-home-2-app .tab-btn {
    border: none;
    background: transparent;
    padding-bottom: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #64748b; /* Slate 500 */
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

#seyr-home-2-app .tab-btn.active {
    color: #0ea5e9 !important; /* Sky 500 */
    border-bottom: 2px solid #0ea5e9 !important;
}

#seyr-home-2-app .tab-btn:hover {
    color: #0ea5e9;
}

/* Chat bubble overrides for light background */
#seyr-home-2-app .bg-white\/5 {
    background-color: #ffffff !important;
    border-color: #e2e8f0 !important;
    color: #1e293b !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

#seyr-home-2-app .bg-amber-500\/20 {
    background-color: #e0f2fe !important; /* light blue for user's own comments */
    border-color: #bae6fd !important;
    color: #0369a1 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Modal Popup Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.3s ease-out forwards;
}

/* Force grid containers in home-2 to stretch to 100% width, overriding active theme grid constraints */
#seyr-home-2-app .grid {
    display: grid !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Reading Tracker Inputs Styling Override to prevent theme conflicts and overflow */
#seyr-home-2-app .seyr-bc-tracker-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    box-sizing: border-box !important;
}

#seyr-home-2-app .seyr-bc-tracker-grid > div {
    width: 100% !important;
    box-sizing: border-box !important;
}

#seyr-home-2-app .seyr-bc-tracker-grid label {
    display: block !important;
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
    font-size: 9px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    color: #64748b !important; /* Slate 500 */
    line-height: 1.2 !important;
}

#seyr-home-2-app .seyr-bc-tracker-grid input[type="number"],
#seyr-home-2-app .seyr-bc-tracker-grid input[type="date"] {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 42px !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: #ffffff !important;
    color: #1e293b !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-align: center !important;
    border-radius: 12px !important;
    margin: 0 !important;
    padding: 8px 12px !important;
    box-sizing: border-box !important;
    transition: none !important;
}

#seyr-home-2-app .seyr-bc-tracker-grid input[type="number"]:focus,
#seyr-home-2-app .seyr-bc-tracker-grid input[type="date"]:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Ensure WebKit date values are centered */
#seyr-home-2-app .seyr-bc-tracker-grid input[type="date"]::-webkit-date-and-time-value {
    text-align: center !important;
}

