﻿
.tblDetay {
    width: 100%;

    tr {
        border-top: 1px solid #eff1f3;

        &:first-child {
            border-top: none;
        }

        td {
            padding: 7px 0;

            &:first-child {
                color: #0e749f;
                font-weight: bold;
                width: 175px;
            }
        }
    }
}

.listContainer {
    /*background: #e9ecef;*/
    /*todo yukarıdaki satır commentlendi */
    border-radius: 0.3rem;
    min-height: 200px;
    padding: 2rem;
}


ul.ekList {
    padding: 0;
    border:1px solid #ccc;

    li:nth-of-type(odd) {
        background-color: #dcedf4;
    }

    li {
        border-bottom: 1px solid #ddd;
        list-style: none;
        padding: 2px 4px;
        transition: all 0.4s;

        &:last-child {
            border-bottom: none;
        }

        a {
            display: block;
            height: 100%;
            color: #1C4E8F;
            padding: 4px;
            text-align: justify;

            &:hover {
                text-decoration: none;
            }
        }

        div.divEkSilindi {
            display: none;
            color: red;
            margin-left: 16px;
        }

        button.btnEkSil {
            margin-left: 16px;
        }

        &:hover {
            background: #d9dcdf;
            text-shadow: -2px 2px 8px #ccc;
        }
    }
}


ul.resimList {
    padding: 0;

    li {
        list-style: none;
        margin-bottom: 1rem;

        div.imgContainer {
            position: relative;
            padding-top: 100%;

            img {
                transition: all 0.4s;
                opacity: 0.8;
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                cursor: pointer;

                &:hover {
                    opacity: 1;
                }
            }
        }

        div.divResimSilindi {
            display: none;
            color: red;
        }
    }
}


.veriButtonContainer {

    .horizontalButtonContainer {
        margin: 1em 0;
        border: none;

        .subButton {
            background: #eff1f3;
            transition: all 0.4s;

            a {
                color: inherit;
                cursor: pointer;
                display: block;
                height: 100%;
                width: 100%;
                text-decoration: none;

                span.icon {
                    padding: 1em;
                    color: #467bad;
                }

                span.verticalAligned {
                    font-size: 10pt;
                    display: block;
                    text-align: center;
                }

                span.verticalAligned.text {
                    padding: 0;
                    height: 4em;
                }

                &:hover {
                    color: #467bad;
                    text-decoration: none;
                }
            }

            &:hover {
                background: #fff;
                box-shadow: 0 2px 8px #1A1727;
            }
        }
    }



    .verticalButtonContainer {
        ul {
            padding: 0em;
            list-style: none;

            li {
                border-bottom: 1px solid #ddd;
                padding: 2px 0;
                transition: all 0.4s;

                &:last-child {
                    border: none;
                }

                a {
                    display: block;
                    height: 100%;
                    width: 100%;
                    padding: 0em;

                    span.icon {
                        display: table-cell;
                        vertical-align: middle;

                        span.iconCircle {
                            display: block;
                            padding: 9px;
                            text-align: center;
                            background: #467bad;
                            border: 1px solid #467bad;
                            border-radius: 50%;
                            color: #fff;
                            height: 50px;
                            width: 50px;
                        }

                        span.iconSquare {
                            display: block;
                            padding: 9px;
                            text-align: center;
                            background: #467bad;
                            border: 1px solid #467bad;
                            border-radius: 4px;
                            color: #fff;
                            height: 50px;
                            width: 50px;
                        }
                    }

                    span.text {
                        color: #333;
                        display: table-cell;
                        padding: 0 0 0 1em;
                        vertical-align: middle;

                        span.gorunenTarih {
                            color: #467bad;
                            font-size: 0.8em;
                            display: table-row;
                        }
                    }

                    &:hover {
                        text-decoration: none;

                        span.text {
                            color: #000;
                        }
                    }
                }

                &:hover {
                    background: #eee;
                }
            }
            /*}*/
        }
        /*}*/
    }
}


ul.nav-tabs {
    a.nav-link {
        background: #eff1f3;
        color: #333;
    }

    a.nav-link.active {
        /*background: #31608c;*/
        background: #1C4E8F;
        border: 1px solid #193c5d;
        color: #fff;
    }
}

.tab-content {
    padding-top: 1em;
}




