﻿
:root {
    --bs-main: #239fc8;
    --bs-secondary: #b6dde7;
    --bs-second: #b6dde7;
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
}
.shell {
    width: 980px;
    margin: 0 auto;
    margin-bottom: 5px;
}


@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

td.number {
    text-align: right;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
.hiddenPrintArea {
    display: none !important;
}
@media print {
    body * {
        visibility: hidden;
        margin: 0px;
        padding: 0px;
    }

    .sidebar {
        display: none;
    }
    /* Yazdırılacak alanı görünür yap */
    .printableArea, .printableArea * {
        visibility: visible;
    }

    /* Yazdırılacak alanı sayfanın tamamına yay */
    .printableArea {
        display: block;
        background-color: black;

        width: 100%;
    }
        .printableArea input, .printableArea select {
            border: none;
            width: auto;
            display: inline
        }
        .printableArea label {
            border: none;
            width: 200px;
            display: inline
        }
        .printableArea button, .printableArea .pagination {
            display: none !important;
        }
    .noPrint {
        display: none;
    }
    .hiddenPrintArea {
        display: block !important;
        width: 100%;
    }
    .ustBilgi{height:300px;}
    input::placeholder {
        color: transparent !important;
    }

}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

#datatable tbody td {
    padding: 4px !important;
}

.listtable tbody td {
    padding: 4px !important;
    font-size: 14px;
}

    .listtable tbody td .form-control {
        padding: 4px !important;
    }


.listtable tbody tr:hover {
    background-color: #b6ff008e;
    cursor: pointer;
}

.listtable td {
    padding: 2px !important;
}

.listtable thead, #datatable thead {
    background: linear-gradient(to bottom, #eeeeee, #dddddd);
    border-top: 1px solid #666666 !important;
}


/*DROPDOWN BUTTON*/
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
    width: 50px;
}

    .dropbtn:hover, .dropbtn:focus {
    }

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 6px;
    background-color: white;
    align-content: flex-start;
}

    .dropdown-content a {
        padding: 6px 8px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
        }

.dropdown:hover .dropdown-content {
    display: block;
}


/* Müşteri özeti bölümü */
.customer-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
    gap: 20px;
    max-width: 1200px;
    margin: 20px;
}

/* Özet kartları */
.summary-card {
    background-color: #eee;
    border-radius: 20%;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: all 0.3s ease-in-out;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .summary-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

/* Başlıklar */
.summary-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Değerler */
.summary-value {
    font-size: 24px;
    color: #333;
    font-weight: 700;
    letter-spacing: 0.5px;
}



.timeline {
    padding-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

.timeline-item {
    position: relative;
    width: 250px;
    background-color: #fff;
    padding: 8px;
    padding-top: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    box-sizing: border-box;
}

    .timeline-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        top: 50%;
        left: -15px;
        width: 30px;
        height: 1px;
        background-color: #ccc;
        transform: translateY(-50%);
    }

    /* Ok işaretleri */
    .timeline-item::after {
        content: '←';
        position: absolute;
        top: 50%;
        right: -20px;
        transform: translateY(-50%);
        font-size: 24px;
        color: #666;
    }
/* Zaman çizelgesinin tarih kısmı */
.timeline-date {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 12px;
    border: 2px solid #ddd;
}

/* Zaman çizelgesinin içerik kısmı */
.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.timeline-content p {
    font-size: 14px;
    color: #555;
}

@media screen and (max-width: 768px) {
    .timeline {
        grid-template-columns: repeat(1, 1fr);
    }
    .column-responsive {
        flex: 1 0 100% !important;
    }
}

@media screen and (max-width: 480px) {
    .timeline {
        grid-template-columns: 1fr;
    }
}
/* Durumlara göre renkler */
.complete {
    border-left: 5px solid #4caf50;
    background-color: #e8f5e9;
}

.ongoing {
    border-left: 5px solid #ff9800;
    background-color: #fff3e0;
}

.pending {
    border-left: 5px solid #9c27b0;
    background-color: #f3e5f5;
}

.failed {
    border-left: 5px solid #e53935;
    background-color: #ffebee;
}

/* Kendi özel renkleriniz için de eklemeler yapabilirsiniz */



html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 0px !important;
    margin: 0px !important;
}
.numeric {
    text-align: right;
}
a, .btn-link {
    color: #006bb7;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}
.list-group-item{padding:3px;}


input {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    width: 100%;
    display: block;
}



div.networkcard {
    width: 100px;
    display: flex;
}
    div.networkcard .card-header {
        font-size: 11px;
    }
    div.networkcard .card-body {
        text-align:center;
        font-size: 11px;
        padding: 3px;
    }
        div.networkcard .card-body img {
            width: 30px;
            height: 30px;
        }
    div.networkcard .card-footer button {
        font-size: 11px;
    }
    .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
        box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
    }

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}
#taskBar {
   position:fixed; bottom:0px; padding:5px; height:50px; width:100%; box-sizing: border-box; left:0px; right:0px; margin:0px;
   z-index:100;
}
    #taskBar  a {
  
        background-color: black;
        box-sizing: border-box;
        cursor:pointer;
        padding: 6px;
        color: white;
        padding-left:20px;
        text-decoration:none;
    }

        #taskBar  a:hover {
            background-color: #333;
        }
#MainMenu {
    left:0px;
    width: 600px;
    height: 600px;
    bottom: 50px;
    position: fixed;
    box-sizing: border-box;
    background-color: black;
    color:white;
    z-index:100;
}
    #MainMenu .menu-link {
        margin-top:3px;
        padding: 5px;
        color: white;
        display: block;
        text-decoration:none;
        cursor:pointer;
    }
    #MainMenu .menu-link:hover {
        padding: 5px;
        background-color: #666;

    }
    #MainMenu .mainRow {
        height: 520px;
        box-sizing: border-box;
        margin:8px;
    }
    #MainMenu .IconMenu {
        background-color: black;
        box-sizing: border-box;
     }

@media(max-width:590px) {
    #MainMenu .IconMenu {
        display: none;
    }

    #MainMenu {
        left: 0px;
        width: 400px;
    }
}
    #MainMenu .IconMenu a {
        display:block;
        background-color: black;
        box-sizing: border-box;
        margin-top:20px;
        padding:8px;
        color:white;

    }
        #MainMenu .IconMenu a:hover {
            background-color: #333;

        }
    #MainMenu .mainMenu {
        background-color: #111;
        box-sizing: border-box;
        width: 250px !important;

    }
    #MainMenu .detailMenu {
        background-color: #333;
        box-sizing: border-box;
        width: 280px !important;

    }
    #MainMenu input {
        background-color: #000; width:90%; border-color:#333; color:white;
    }
    #MainMenu .searchRow {
        width:95%;
        padding: 5px;
        padding-left: 20px;
        align-content: center;
        text-align: center;
        box-sizing: border-box;
    }

.window {
    position: absolute;
    width: 800px;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.window-header {
    background: #007bff;
    color: white;
    padding: 10px;
    cursor: move;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.window-body {
    padding: 10px;
    height: 600px;
    overflow: auto;
}

.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 5px;
    display: flex;
    gap: 10px;
}

    .taskbar button {
        background: #007bff;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
    }
    .list-item{
        text-decoration:none; display:block; color:black; padding:8px;margin-left:15px;
        border-radius:3px; cursor:pointer;
    }
.list-item.caption {
 font-weight:bold;
    margin-left: 0px;
}
.list-item:hover{
    background-color:#eee;
    border:1px solid #999;
}

#chatbox {
    position: fixed;
    bottom: 50px;
    right: 10px;
    width: 60%;
    height: 80%;
    border: 1px solid #ccc;
    background: black;
    overflow-y: scroll;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing:border-box;
    z-index:100;
}

    #chatbox textarea {
        width: 100%;
        margin-top: 2px;
        font-size: 12px;
        height: 100%;
    }
 

#chatHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    border-bottom: 1px solid #ccc;
    background: #f1f1f1;
    cursor:pointer;
}

#chatContent {
    height: calc(100% - 120px);
    background-color: #ddd;
    padding:4px;
}
    #chatContent a {
        background-color: #007bff !important;
        padding: 3px !important;
        margin: 1px !important;
        border-radius: 6px !important;
    }
#chatFooter {
    padding: 6px;
    border-top: 1px solid #ccc;
    box-sizing:border-box;

}
.userchat {
    background-color: #d9fdd3;
    margin-left:100px;
}
.botchat {
    margin-right: 100px;
    background-color: white;
}
.botchat, .userchat {
    padding:8px; border-radius:8px;
    box-shadow:rgba(0,0,0,0.6) 10px inset;
    color:black;
 margin-top:12px;
  
}
#WebMenu {
    position: fixed;
    top: 0px;
    background-color: #080808dd;
    width: 100%;
    height: 60px;
    padding: 0px;
    margin: 0px;
    z-index: 10;
    white-space: nowrap;
}
#WebMenu img{
    width:50px;
  
    
}
    #WebMenu a, #WebMenu button {
        text-decoration: none;
        color: white;
        padding: 5px;
        white-space: nowrap;
        overflow-x: auto; 
        overflow-y: hidden;
        margin-left: 15px;
        cursor: pointer;
    }
#bg-video {
    top: 0px;
    margin: 0px;
    object-fit: contain;
    object-fit: contain;
    overflow-clip-margin: content-box;
    overflow: clip;
    min-width: 100%;
    min-height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    object-fit: cover;
    background-color:black;
}
#WebContent {
    color: black;
    padding: 22px;
    z-index: 10;
    width: 100%;
    max-height: 60vh;
    overflow: auto;
    box-shadow: rgba(255,255,255,0.2) 10px 10px revert;
}
    #WebContent a{
        text-decoration:none;
        color:white;
        padding:4px;
        background-color:#6d0909;
        border-radius:6px;
    }
        #WebContent a:hover {
            background-color: #0a099b;
        }
#SendMessage {
    position: fixed;
    color: white;
    background-color: #ffffffdd;
    width: 50vw;
    padding: 32px;
    z-index: 10;
    top: 160px;
    left: 25vw;
    right:25vw;
    max-height:80vh;
 
    border-radius: 15px;
    box-shadow: rgba(255,255,255,0.2) 10px 10px revert;
    border: 1px solid #fbfafa7f;
}
@media(max-width:800px)
{
    #SendMessage {
        width: 80vw;
        left: 10vw;
        right: 10vw;
    }
    #WebMenu a, #WebMenu button {
        margin-left: 2px;
 
    }
    #logo {
 
        right: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

    }
}
#AIChatButton, #AIChatButton i{
    font-size: 22px;
}
#logo {
    position: fixed;
    width: 200px;
    padding: 32px;
    z-index: 10;
    top: 80px;
    right: 50px;
    transform: translate(-50%, -50%);
    text-align:center;
    cursor:pointer;
}
    #logo span{
        color:#fbfafa68;
        font-size:25px;
        background-color:#072641b3;
        padding:15px;
        border-radius:15px;

    }
    #logo img {
        width: 100%;
        height: 100%;
    }
.input-container {
    display: flex;
    align-items: center;
    width: 100%;
}

    .input-container textarea {
        flex: 1; /* Kalan tüm alanı kaplasın */
        height: 100%;
        min-height: 40px; /* Dilediğin minimum yükseklik */
        max-height: 100px; /* Dilersen max yükseklik sınırı koyabilirsin */
        resize: vertical; /* Kullanıcı genişliği değiştiremesin ama dikey olarak büyütebilsin */
    }

.homebuttons {
    width: 60px; /* Sabit genişlik */
    height: 60px; /* Ebeveyn konteynerin yüksekliğini alsın */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #007bff; /* Buton rengi */
    color: white;
    cursor: pointer;
    border-radius: 5px; /* Hafif köşeleri yuvarlat */
    margin-left: 5px; /* Textarea ile arasına boşluk */
}

    .homebuttons:hover {
        background: #0056b3;
    }
 
.helpLinks a{ display:block; padding:5px; text-decoration:none; color:white;}
.helpLinks a:hover{ text-decoration:underline;}
@media (max-width: 768px) {
    .column-responsive {
        flex: 1 0 100% !important;
    }
}


/* Ana buton (Soru İşareti) */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #990000;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
    z-index: 100000;
}

    .floating-btn:hover {
        background-color: #0056b3;
    }

/* Ekstra butonlar */
.floating-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10000;
}

    .floating-menu a {
        width: 50px;
        height: 50px;
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        text-decoration: none;
        opacity: 0;
        position: absolute; z-index:10;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

        /* Butonlara özel renkler */
        .floating-menu a:nth-child(1) {
            bottom: 20px;
            right: 20px;
            z-index: 10;
        }
        /* WhatsApp */
        .floating-menu a:nth-child(2) {
            bottom: 20px;
            right: 20px;
            z-index: 10;
        }
        /* YouTube */
        .floating-menu a:nth-child(3) {
            background-color: #990000;
            bottom: 20px;
            z-index: 10;
            right: 20px;
        }
    /* Giriş */

    /* Açıkken butonlar yukarı doğru açılır */
    .floating-menu.active a:nth-child(1) {
        transform: translateY(20px) translateX(-40px);
        z-index: 10;
        opacity: 1;
    }
    /* WhatsApp */
    .floating-menu.active a:nth-child(2) {
        transform: translateY(-40px) translateX(-40px);
        z-index: 10;
        background-color: #ffffff;
        opacity: 1;
    }
    /* YouTube */
    .floating-menu.active a:nth-child(3) {
        transform: translateY(-40px) translateX(20px);
        z-index: 10;
        opacity: 1;
    }
/* Giriş */
.modules-section {
    background-color: #f1f1f1;
    padding: 10px 0;
    margin-top: 0px;
}

    .modules-section h3 {
        text-align: center;
        font-size: 2rem;
        color: #333;
    }

.modules-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.module {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .module h4 {
        font-size: 1.4rem;
        color: #219fc6;
        margin-bottom: 10px;
    }

    .module p {
        font-size: 1rem;
        color: #555;
    }
.modules-list .module i {
    font-size: 36px; /* İkonları büyük yapar */
    color: #219fc6; /* Başlık rengindeki yeşil tonunu uygular */
    margin-right: 15px; /* İkon ile başlık arasına boşluk ekler */
    transition: color 0.3s ease; /* Hover efekti için geçiş efekti */
}

.modules-list .module:hover i {
    color: #f44336; /* Hover durumunda ikon rengini kırmızıya değiştirir */
}
.card-header, .card-footer {
    background-color: #239fc8 !important;
    color: white !important;

}
.card-header {
    box-shadow: rgba(0,0,0,0.3) 0px 2px 4px;
    border-bottom: 1px solid #fff;
}
button.video-link{
    font-size:11px;
}
button.video-link:hover {
    text-decoration:underline;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--bs-main);
    --bs-btn-border-color: #0d6efd;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--bs-secondary);
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}
.nhesap-table{ width:100%;}
.nhesap-table  tr:nth-child(odd) {
    background-color: #f9f9f9; 
}

.nhesap-table  tr:nth-child(even) {
    background-color: #ffffff; /* Beyaz */
}
    .nhesap-table tr:hover {
        background-color: #f0f0f0; /* Beyaz */
        font-size:16px;
    }
.nhesap-table td,
.nhesap-table th {
    padding: 10px; /* istediğin değeri yazabilirsin */
    border-bottom: solid 1px #d9d9d9;
}