.k-splitter {
    border: none !important;
}

.accessibility-bar {
    display: flex;
    justify-content: center;
    background-color: var(--w100);
    padding: 1em;
    text-align: center;
    margin-top: 2rem;
}

.accessibility-width {
    max-width: 1200px;
}

.accessibility-title {
    font-weight: 600;
    margin: 0px;
}

.footer-bar {
    background-color: var(--primary-color);
    color: var(--w100);
    padding: 10px 5rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page {
    margin-left: 8%;
    margin-right: 8%;
}

.content {
    margin-top: 8rem !important;
    padding-top: 3em;
}

.nav-bar {
    background-color: white;
    border-bottom: solid 1px #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 8%;
}

.language {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/*.nav-logo img {
    height: 50px;
}*/

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.nav-row {
    display: flex;
    justify-content: flex-end;
}

.nav-item {
    width: 100%; 
    margin: 5px 0; 
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
}

/* button:hover {
    background-color: #0056b3; 
} */

.nav-link {
    color: black;
    white-space: nowrap;
    margin-left: 5px;
    margin-right: 5px;
}

.nav-link:hover {
    color: black;
}

.content-extend {
    margin-bottom: 3rem;
}

/* 手機版樣式 */
@media (max-width: 768px) {
    .nav-logo > img{
        height: 2em !important;
    }

    .nav-container {
        display: none;
    }

    .dropdown-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 53px;
        max-height: calc(100vh - 120px);
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
      
        background-color: white;
        z-index: 1000;
        padding: 16px;
        border: none;
    }

        .dropdown-menu.show {
            display: flex;
        }

    .dropdown-divider {
        width: 100%;
        border-top: 1px solid rgb(107, 107, 107);
        margin: 10px 0;
    }

    .dropdown-button {
        display: block;
        background-color: white;
        color: black;
        border: none;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        border-radius: 0.25rem;
        cursor: pointer;
    }
        .dropdown-button :active, .dropdown-button :focus{
            background-color: white !important;
            color: black;
            border: none;
            padding: 0.375rem 0.75rem;
            font-size: 1rem;
            border-radius: 0.25rem;
            cursor: pointer;
        }

    .nav-button {
        color: white;
        border: none;
        padding: 0.625rem 0.75rem;
        font-size: 0.875rem;
        border-radius: 0.25rem;
        cursor: pointer;
        width: 100%; 
        text-align: center;
        margin: 5px 0; 
        box-sizing: border-box; 
    }
        #solid{
            background-color: #0056b3;
        }

        #outlined{
            background-color: #fff;
            border: 1px solid #0056b3 ;
            color: #0056b3;
        }

    .page {
        margin-left: 2%;
        margin-right: 2%;
    }

    .content{
        margin-top: 3em !important;
        margin-right: 1em !important;
        margin-left: 1em !important;
    }

    .footer-text {
        display: none;
    }

    .accessibility-bar {
        display: flex;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        margin-top: 0rem;
    }

    .accessibility-title {
        margin: 0;
        padding-left: 10px;
    }
/* 20240916 Michael fix dialog buttons missing
    .k-dialog-actions {
        display: none !important;
    }
*/
    .Accessibility-text {
        display: none;
    }

    .Accessibility-icon {
        display: block;
        padding-right: 10px;
        cursor: pointer;
    }

    .content-extend {
        margin-bottom: 10rem !important;
    }

}
@media (min-width: 769px) {
    .dropdown-button {
        display: none !important;
    }

    .Accessibility-icon {
        display: none !important;
    }
}

/* ================================================
   全站所有 Telerik Blazor Grid 的焦點樣式
   ================================================ */

.k-grid th.k-focus,
.k-grid td.k-focus,
.k-grid td:focus-within {
    outline: none;
    box-shadow: inset 0 0 0 2px #ff6f00, 0 0 0 4px rgba(255, 111, 0, .35);
    background-color: #fff3e0;
}

/* ================================================
   WCAG: 2.5.8 Target Size (Minimum)
   ================================================ */
a {
    padding: 4px;
}

.customized-loader-container.k-loader-container {
    position: fixed;
}


