/* Base transition for smooth feel */
body {
    transition: background-color 0.25s ease, color 0.25s ease;
}

/* Dark mode styles */
body.dark-mode {
    background-color: #121212;
    color: #e6e6e6;
}

/* Link styling in dark mode */
body.dark-mode a {
    color: #8ab4f8;
}

body.dark-mode a:hover {
    color: #a8c7fa;
}

/* Shared button style */
.dms-toggle-btn {
    border: none;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    z-index: 99999;
}

.dms-toggle-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.dms-toggle-btn:active {
    transform: translateY(0);
}

/* Floating button bottom-right */
.dms-floating-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
}

/* Shortcode button (inline) */
.dms-shortcode-btn {
    position: static;
    display: inline-block;
}
