/*
Theme Name: VisionGaia High-End News
Theme URI: https://visiongaia.de
Author: VisionGaia Technology
Author URI: https://visiongaia.de
Description: Ein futuristisches, Tailwind-basiertes News Theme. High-End Performance & Design.
Version: 2.1.0
License: Proprietary
Text Domain: vgt
*/

/* HINWEIS: Das eigentliche Styling kommt von Tailwind CSS (CDN), 
   das in der functions.php geladen wird. 
   Hier kommen nur absolute WordPress-Notwendigkeiten rein.
*/

/* Admin Bar Fixes */
body.admin-bar .vgt-header-glass {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar .vgt-header-glass {
        top: 46px;
    }
}

/* Pagination Styling für index.php */
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 40px;
    padding: 0 15px;
    background: #1e293b;
    border: 1px solid #334155;
    color: #94a3b8;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #00f3ff;
    color: #000;
    border-color: #00f3ff;
}

.pagination .dots {
    background: transparent;
    border: none;
    color: #475569;
}

/* NEU: Custom Scrollbar für das Lizenz-Overlay */
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: #0f0f13; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #334155; border-radius: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #00f3ff; }