﻿/*@import "tailwindcss/preflight";*/
@tailwind utilities;

/* Basis-Schriftgröße */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
    .no-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .no-scrollbar::-webkit-scrollbar {
        display: none;
    }
}
.scroll-touch {
    -webkit-overflow-scrolling: touch;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Fokus-Ring für Inputs/Buttons */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus,
.form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* 🌓 Dark Theme Bereich !important */
/*body.bg-zinc-900 label,
body.dark label {
    color: black;
}*/


/* Inputs überall einheitlich hell & lesbar */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea,
select {
    background-color: white !important;
    color: black !important;
    border-radius: 0.375rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
}

input {
    accent-color: orange;
}

/* Button Hover */
button:hover {
    filter: brightness(1.1);
}
