html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.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;
}

@media print {
    /* Hide the print button itself */
    .no-print {
        display: none !important;
    }

    /* Optional: Hide headers, sidebars, or footers */
    header, footer, .sidebar, .nav {
        display: none !important;
    }
}

html {
    position: relative;
    min-height: 100%;
    scroll-behavior: auto; /* Overrides smooth scroll conflicts on iOS */
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.btn-image-large {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 200px; /* Adjust size as needed */
    height: 200px;
}

    .btn-image-large img {
        width: 20%;
        height: 20%;
        object-fit: contain; /* Keeps image proportions without cropping */
    }

.kanban-board {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.column {
    flex: 1;
    background: #f4f5f7;
    border-radius: 4px;
    padding: 10px;
    min-width: 200px;
}

.sortable-list-container {
    min-height: 200px; /* Crucial so empty lists still accept drop items */
}

.sortable-item {
    background: white;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    cursor: grab;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
textarea {
    /* 1. Override Apple's default styling */
    -webkit-appearance: none;
    appearance: none;
    /* 2. Set a solid, clearly visible border */
    border: 1px solid #333333 !important;
    /* 3. Add background-color so it renders properly in WebKit */
    background-color: #ffffff;
    /* 4. (Optional) Prevent weird rounded corners on iOS */
    border-radius: 4px;
}

/* 5. Create a strong, noticeable focus state */
input:focus,
textarea:focus {
    outline: none;
    border-color: #0066cc !important; /* Bold blue for focus */
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}

input:checked {
    outline: 2px solid blue;
}

input[type="checkbox"]:not(:checked) {
    border-color: black !important;
    outline: 1px solid black;
}