﻿/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/*Thse area visual studio settings*/
a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 20px;
}

/*Go bottom for some tips*/


/*These are our settings*/
input,
select,
textarea {
    max-width: 1600px;
    /*max-width: auto;*/
}

html {
    /*font-size: 12px;*/

    font-size: 0.70rem;
    /*font-size: 0.85rem;*/
}

.container {

    width: 100%;
    /*padding-top : 15px;*/
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1600px;
}

.container-fluid {
    /*width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;*/
}

body {
    /*  background :linear-gradient();*/
    background-color: rgba(205, 210, 215, 0.50);

    /* added content 06-01-2024*/
    width: 100%;
    height: 100%;
}
/* img tag added content 06-01-2024*/
img {
    width: auto;
    height: auto;
    /*max-width: 100%;*/
    /*max-height: 90%;*/
    max-width:100vw;
    max-height:100vh;
}

/*  Our is used only on start page*/
.Our {
    /*font-size: 4.5em;*/
    font-size: 3vw;
    font-family: 'Microsoft JhengHei';
    font-weight: 200;
    color: #548235;
    padding-top: 1.8em;
    padding-left: 10px;
}

.btn-primary {
    color: #fff;
    background-color: #88A983;
    border-color: #657862;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #799275;
        border-color: #657862;
    }

    .btn-primary:focus, .btn-primary.focus {
        box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
    }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #fff;
        background-color: #E7F2E6;
        border-color: #E7F2E6;
    }

div.card {
    /*border: 1px solid rgba(0,0,0,0.2);*/
    border-radius: 5px;
    border: 0px 3px 3px 0px solid rgb(216, 213, 213);
    /* border-bottom: 3px solid rgb(216, 213, 213)*/
}

div.header {
    background-color: #2A8B23;
    padding: 10px 5px 5px 10px;
    font-family: Calibri;
    color: #FFF;
}

div.container {
    padding: 10px;
    height: auto;
    font-size: small;
}

.divtitle {
    background-color: #f4f6f2;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding-top: .80em;
    padding-bottom: .80em;
}

.divfooter {
    background-color: #f4f6f2;
    /*border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;*/
    padding-top: .70em;
    padding-bottom: .70em;
    text-align: center;
}

.divcontent {
    background-color: #fdfffb;
    padding-top: .70em;
    padding-bottom: .70em;
    /*gap: 6px 0;*/
}

.rowcontent {
    /*pt-2 pb-2 bg-light*/
    padding-top: 2em;
    padding-bottom: 2em;
    background-color: rgb(220, 227, 248, 0.80);
}

.table {
    border: 1px solid #edeee9;
    font-size: small;
}

table tr {
    /*line-height: 9px;*/
}

    table tr:hover {
        background-color: #e6e8e3;
    }

tr:nth-child(even) {
    background-color: #f3f5ee;
}

thead {
    background-color: #edeee9;
}

.table thead th {
    /*vertical-align: bottom;
        border-bottom: 2px solid #fff;*/
}

.table th {
    padding: .75rem;
    vertical-align: top;
    /*border-top: 1px solid #fff;*/
    border: 1px solid #fff;
    overflow: hidden;
    /*width: 50%;*/
    width: min-content;
    white-space: nowrap;
}

.table td {
    /*padding: .75rem;*/
    vertical-align: top;
    border-top: 1px solid #fff;
    /*overflow: hidden;*/
    overflow-wrap: normal;
    /*width: 10%;*/
    width: min-content;
    max-width: 35%;
    /*white-space: nowrap;*/
}

::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }


/*This way, the background image will cover the entire element, with no stretching (the image will keep its original proportions):*/
/*Instead of body it can be div, or p element*/
/*<style>
body {
    background-image: url('img_girl.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

</style>*/