/* === NeoGlow Night Theme for Mastodon === */

/* Base styles */
body {
    background-color: #0f1117 !important;
    color: #d6d6e7 !important;
    font-family: 'Segoe UI', sans-serif;
}

/* Universal rounded edges */
* {
    border-radius: 12px !important;
}

/* Main columns */
.column {
    background-color: #1a1d29 !important;
    border: 1px solid #2e3240 !important;
}

/* Navigation bar */
.navigation-bar {
    background-color: #13161f !important;
    border-bottom: 1px solid #2c2f3c;
}

/* Side drawer */
.drawer__inner {
    background-color: #12141d !important;
}
.drawer__tab {
    color: #ffffff !important;
}
.drawer__tab.active {
    background-color: #282c38 !important;
}

/* Compose toot */
.compose-form__autosuggest-wrapper {
    background-color: #1f222e !important;
    border: 1px solid #2e3240;
}
.compose-form__modifiers {
    background-color: #161922 !important;
}

/* Toots */
.status {
    background-color: #181b26 !important;
    border: 1px solid #2b2e3b;
}

/* Buttons */
.button.button--boost {
    background-color: #008f5f !important;
    color: #ffffff !important;
}
.button.button--reply {
    background-color: #3b82f6 !important;
    color: #ffffff !important;
}
.button.button--favourite {
    background-color: #f59e0b !important;
    color: #ffffff !important;
}

/* Mentions and hashtags */
.mention,
.hashtag {
    color: #7fd1ff !important;
}

/* Links */
a {
    color: #5edfff !important;
}
a:hover {
    text-decoration: underline;
}

/* Notifications */
.notification__message {
    background-color: #212532 !important;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: #444c5c;
    border-radius: 4px;
}
::-webkit-scrollbar-track {
    background: #1a1d29;
}

/* Flash messages */
.flash-message {
    background-color: #ff4d4f !important;
    color: white !important;
}

/* Transitions for smooth UI */
.column,
.status,
.compose-form__autosuggest-wrapper {
    transition: all 0.3s ease-in-out;
}


