﻿.mr-3 {
    margin-right: 1rem;
}

.ml-3 {
    margin-left: 1rem;
}

.mr-2 {
    margin-right: .5rem;
}

.ml-2 {
    margin-left: .5rem;
}

.pr-3 {
    padding-right: 1rem;
}

.pl-3 {
    padding-left: 1rem;
}

.pr-2 {
    padding-right: .5rem;
}

.pl-2 {
    padding-left: .5rem;
}

.pointer {
    cursor: pointer;
}

.cursordefault {
    cursor: default;
}

@media(max-width:769px) {
    .d-pc {
        display: none;
    }
}

@media(min-width:768px) {
    .d-phone {
        display: none;
    }
}

/*@media(min-width:768px) {
    .pc-width {
        width: 1200px;
        background-color:blue;
    }
}*/


.text-navy {
    color: navy;
}

.text-deeppink {
    color: deeppink;
}

.bg-lightgray {
    background-color: lightgray
}

/*.card{
    background-color:#f0f0f0
}


.card-header {
    background-color: #d6d6d6
}*/

.onelinestring {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.titlelabel {
    font-weight: bold;
    color: black;
}

.contentlabel {
    color: gray;
}

.sim-phone {
    padding: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 36px;
    background-color: black;
    width: 350px;
    height: 690px;
    max-width: 90vw;
}

    .sim-phone .sim-phonewindow {
        border-radius: 4px;
        background-color: white;
        width: 318px;
        height: 630px;
        max-width: 80vw;
    }

        .sim-phone .sim-phonewindow .header {
            padding-top: .5rem;
            width: 318px;
            height: 40px;
            overflow: hidden;
            background-color: darkkhaki;
            padding-left: .5rem;
            max-width: 80vw;
        }

            .sim-phone .sim-phonewindow .header span {
                font-size: large;
                font-weight: bold;
                color: white;
            }

        .sim-phone .sim-phonewindow .sim-windowcontent {
            padding: .5rem;
            overflow-y: auto;
            height: 590px;
        }

.hunderline {
    cursor: pointer;
}

    .hunderline:hover {
        text-decoration: underline;
        background-color: lightgray;
    }

.indent2 {
    text-indent: -2em;
    margin-left: 2em;
}

.min350 {
    min-width: 350px;
}

.blazored-toast-container {
    z-index: 150;
}

.fa-angle-down {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #8496a9;
    font-size: 0;
    line-height: 0;
    float: left;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.fa-angle-up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #8496a9;
    font-size: 0;
    line-height: 0;
    float: left;
    margin-left: 1.5rem;
    margin-top: 1rem;
    transform: rotate(180deg);
}

.btnspan {
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    border-radius: 4px;
    border-width: 1px;
}

.framecontainer {
    border: solid;
    border-color: whitesmoke;
    border-radius: 3px;
    border-width: 1px;
}

.whitecard {
    background: #ffffff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 0;
    margin-bottom: 1rem;
}


.selectedcard {
    border-color: maroon;
}

.columnlabel {
    font-size: 14px;
}

.lbltitle {
    color: navy;
    line-height: 1;
}

.lblnectitle {
    color: #d9534f;
    line-height: 1;
}

.lbldesc {
    color: #808080;
    font-size: 12px;
    font-weight: normal;
}

.horscroll {
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
}

.del {
    text-decoration: line-through;
}

.arrow {
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 4px;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.btnclose {
    color: white;
    background-color: red;
    font-size: 15px;
    border-radius: 13px;
    padding: 2px;
    cursor: pointer;
    height: 26px;
    width: 26px;
    text-align: center;
}

.right-0 {
    right: 0px;
}

.phontcontentwidth {
    width: 400px;
}

@media(max-width:768px) {
    .phontcontentwidth {
        width: auto;
    }
}

.heightauto {
    animation: grow ease 1s;
    transition: .5s;
}

.heightauto div {
    animation: grow ease 2s;
}

.height0 {
    max-height: 0;
    overflow: hidden;
}

@keyframes grow {
    0% {
        max-height: 0;
    }

    100% {
        max-height: auto;
    }
}

.myaccordion {
    width: 100%;
}

.myaccordion-content {
    overflow: hidden;
    transition: max-height 0.5s ease; /* 控制展開和收起的過渡時間 */
    padding: 0 10px;
}
