﻿
.myRaportTable {
    overflow: auto;
    height: 90%;
    width: 100%;
}

    .myRaportTable thead th {
        position: sticky; /*tabloların yatay başlığını sabitleme */
        top: 0;
        line-height: 25px;
        padding: 5px;
        z-index: 1;
    }

    .myRaportTable tbody th {
        position: sticky; /*tabloların dikey başlığını sabitleme  (sıralama sütunu) */
        left: 0;
        color: lightgrey;
    }

    .myRaportTable tbody td {
        line-height: 15px;
        padding: 5px;
    }

@media (max-width: 952px) {
    .myRaportTable {
        height: 95%;
        width: 100%;
    }

    .myRaportTable thead th {
        line-height: 25px;
        padding: 5px;
    }

    .myRaportTable tbody td {
        line-height: 15px;
        padding: 5px;
    }
   
}

@media (max-width: 858px) {

    

    .myRaportTable {
        height: 100%;
        width: 100%;
    }

    .myRaportTable thead th {
        line-height: 15px;
        color: red;
        padding: 5px;
    }

    .myRaportTable tbody td {
        line-height: 15px;
        padding: 5px;
    }
   
}

/*Tablo Satır Rengi Dizayn Alanı*/
.rowSuccess {
    background-color: #EAF5DE;
}

.rowDanger {
    background-color: #FEC0C0;
}
/*Tablo Dizayn Alanı Sonu*/



