/* header.css */
[data-bs-theme="light"] .navbar-link {
    color: var(--bs-gray-700);
}

[data-bs-theme="dark"] .navbar-link {
    color: var(--white);
}

/* Button Close */
[data-bs-theme="light"] .btn-outline-theme {
    color: #212529;
    border-color: #212529;
}

[data-bs-theme="light"] .btn-outline-theme:hover {
    background-color: #212529;
    color: #fff;
}

/* Dark theme variant */
[data-bs-theme="dark"] .btn-outline-theme {
    color: #f8f9fa;
    border-color: #f8f9fa;
}

[data-bs-theme="dark"] .btn-outline-theme:hover {
    background-color: #f8f9fa;
    color: #212529;
}

.typing-cursor::after {
    content: '|';
    animation: blink 0.8s steps(1) infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}