﻿#loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(14, 14, 14, 0,88);
    z-index: 9999;
    text-align: center;
    padding-top: 20%;
}
.spinner {
    border: 16px solid #9d9292ba;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
}

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex; /* 👈 flex yap */
    justify-content: center;
    align-items: center;
    z-index: 1050;
    display: none; /* en alta değil, en üste yazma */
}
    #loadingOverlay.active {
        visibility: visible;
    }
    #loadingOverlay .loading-content {
        color: #fff;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
        color:#05508f;
    }

    100% {
        transform: rotate(360deg);
        color:#d2d2d2;
    }
}
.landing {
    background-image: url("../img/bg3.jpeg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color: #fff !important;
}
.app-select-hidden {
    display: none !important;
}
.suggestion-textarea{
    min-height:3em !important;
    height:9em !important;

}
.fixed-btn {
    position: fixed;
    top: 60px;
    right: 0px;
    border-radius: 0;
    border: none;
}
 
.drop-zone {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 20px;
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-size: 1.5em;
    color: #ccc;
    cursor: pointer;
    transition: .3s;
}
	.drop-zone.drag-over {
		background-color: #f0f0f0;
	}
	.drop-zone i {
		font-size: 40px;
		color:#6c757d;
	}
    .drop-zone p{
        font-size:.725em; 
    }
    .file-info{
        margin-top:10px;
        font-size:1em;
    }

@keyframes comment-change-color {
    from {
        background-color: #19ce2d;
        color: #f2f2f2;
    }

    to {
        background-color: #fff6cc;
        color: #000;
    }
}
.sz-xs {
    max-width: 10em;
}
.sz-l {
    max-width: 14em;
}
.btn-radius-0{
    border-radius:0;
}
.center-form {
    width: 100%;
    max-width: 420px;
    padding: 15px;
    margin: 0 auto;
    margin-top: 10rem;
    background-color: rgba(255,255,255,0.94);
    border-radius: 1em 1em 0 0;
}
    .center-form .lbl {
        position: relative;
        margin-bottom: 1rem;
    }
    .center-form .txt {
        padding: .75rem;
    }
/*table modified begin*/
:root {
    --background: rgba(255,255,255,0.94);
    --table-background: #d2d2d2;
    --primary: #2c2e30;
    --gray: #717171;
    --odd-row: #d2d2d2;
    --th-background: #bba5a5;
    --gray-background: #edeef1;
    --gray-mid: #f1f2f6;
}
.caption-container {
    font-size: 1.12rem;
    font-weight: 700;
    text-align: left;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-background);
}
.table-wrapper {
    overflow-x: auto;
    overflow-y: auto;
    padding-bottom: 8px;
}
.table-widget {
    border-radius: 16px;
    background-color: var(--table-background);
    padding: 24px;
    width: 90%;
    margin: 16px;
    max-width: 760px;
    border: 2px solid var(--gray-background);
    box-shadow: 0 4px 16px 0 rgba(140,150,169,0.15);
    text-align: left;
}

.expense-popover {
    position: absolute;
    background: #111;
    color: #fff;
    border: 1px solid #444;
    padding: 10px;
    font-size: 13px;
    z-index: 9999;
    box-shadow: 0 0 12px rgba(0,0,0,.6);
    border-radius: 6px;
}

    .expense-popover table {
        border-collapse: collapse;
        width: 100%;
    }

    .expense-popover td {
        padding: 4px 8px;
    }

    .expense-popover tr:last-child td {
        border-top: 1px solid #555;
        font-weight: bold;
    }



/*table modified end*/

/***/

.timeline {
    position: relative;
    list-style: none;
    padding-left: 60px;
}

    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #0d6efd;
        left: 28px;
        margin-left: -2px;
    }

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0d6efd;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.timeline-content {
    padding-left: 70px;
}

.timeline-version {
    font-size: 0.9rem;
    color: #6c757d;
    margin-left: 10px;
}

.update-list {
    margin-top: 0.5rem;
}

.update-item {
    display: block;
    color: #0d6efd;
    text-decoration: none;
    margin-bottom: .25rem;
}

.update-preview {
    margin-top: .5rem;
    display: none;
}

    .update-preview img {
        max-width: 100%;
        border-radius: .5rem;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

/* Flaş animasyonu */
@keyframes flash-animation {
    0% {
        background-color: yellow; /* Başlangıç: Sarı arka plan */
        color: black; /* Başlangıç: Siyah yazı */
    }

    50% {
        background-color: white; /* Ortası: Beyaz arka plan */
        color: white; /* Ortası: Beyaz yazı */
    }

    100% {
        background-color: yellow; /* Bitiş: Tekrar Sarı arka plan */
        color: black; /* Bitiş: Tekrar Siyah yazı */
    }
}

/* Flaşlamak istediğimiz link için stil */
.flash-me {
    animation: flash-animation 1.5s infinite alternate; /* Animasyon ayarları */
    padding: 8px 15px; /* Arka planı daha iyi görmek için dolgu ekleyebiliriz */
    border-radius: 5px; /* Hafif yuvarlak köşeler */
    display: inline-block; /* Dolgunun uygulanabilmesi için */
    text-decoration: none; /* Alt çizgiyi kaldır (isteğe bağlı) */
}

    /* Bootstrap'ın varsayılan link stillerini geçersiz kılmak için */
    /* Hover durumunda da flaş efektinin devam etmesini istiyorsak */
    .flash-me:hover {
        animation: flash-animation 1.5s infinite alternate; /* Hover'da da animasyon devam etsin */
        /* text-decoration: none; */ /* Hover'da alt çizgi çıkmasını engeller */
    }

/* Eğer linkin varsayılan rengi yüzünden animasyon düzgün çalışmazsa */
.nav-link.flash-me {
    color: black !important; /* Başlangıç rengini garanti altına almak için */
}

    .nav-link.flash-me:hover {
        color: white !important; /* Hover rengini garanti altına almak için */
    }
/***/
.nav-item ul li a:hover {
    background-color: #717171;
    color: #e5e3e3;
}
input[type="date"]:before {
    content: attr(placeholder) !important;
    color: #a8a4a4;
    margin-right: 0.5em;
}
.chk-lg {
    font-size: 2.3em;
    margin-top: -.22em;
    margin-left: .12em;
}
    .chk-lg input[type="checkbox"], .chk-lg input[type="radio"] {
        border: solid 2px #2a49bf;
    }
input[type="date"]:focus:before, input[type="date"]:valid:before {
    content: "";
}
/**/
.toggle-ref {
    transition: .3s;
}
    .toggle-ref:hover {
        cursor: pointer;
        color: #d4dfe6;
    }
/**/
.responsive {
    font-weight: 400;
    font-size: .875rem !important;
}
    .responsive thead tr th:last-child {
        width: 10px;
    }
    .responsive tr:hover {
        background-color: #eeeeee !important;
        color: rgba(0,0,0,.4);
        font-weight: 600;
    }
    .responsive tr:focus {
        background-color: #e6cead;
        color: rgba(0,0,0,.3);
    }
@media only screen and (max-width: 575px) and (max-height: 768px) {
    .sz-xs {
        max-width: 50% !important;
    }

    .sz-l {
        max-width: 100% !important;
    }

    .responsive {
        border: 0;
    }

        .responsive caption {
            font-size: 1.3em;
        }

        .responsive thead tr:first-child {
            display: inline-block;
            position: absolute;
        }

        .responsive thead tr:last-child {
            border: none;
            clip: rect(0,0,0,0);
            height: 1px;
            margin: 1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            width: 1px;
            color: red;
            background-color: #d5cccc;
        }

        .responsive tbody {
            display: block;
        }

            .responsive tbody tr {
                border-bottom: 1px solid #ddd;
                display: block;
                margin-bottom: .625em;
            }

                .responsive tbody tr td {
                    display: block;
                    font-size: .875em;
                    border-bottom: solid 1px rgba(0,0,0,.4);
                    text-align: right !important;
                }

                    .responsive tbody tr td:before {
                        content: attr(data-label);
                        float: left;
                        font-weight: bold;
                        text-transform: uppercase;
                    }

                    .responsive tbody tr td:last-child {
                        border-bottom: 0;
                    }

        .responsive tfoot tr {
            display: none;
        }

            .responsive tfoot tr:nth-child(1) {
                display: block;
            }
}
/**/
.ve-danger {
    background-color: #dc3545;
    color: #d5cccc;
}
    .ve-danger:hover {
        color: #dc3545;
        background-color: #d5cccc;
    }
.ve-warning {
    background-color: #d56900;
    color: #d5cccc;
}
    .ve-warning:hover {
        color: #d56900;
        background-color: #d5cccc;
    }
.ve-info {
    background-color: #c4f711;
    color: #2c2e30;
}
    .ve-info:hover {
        color: #c4f711;
        background-color: #2c2e30;
    }
.ve-primary {
    background-color: #05508f;
    color: #d5cccc;
}
    .ve-primary:hover {
        color: #05508f;
        background-color: #d5cccc;
    }
.ve-success {
    background-color: #10893e;
    color: #d5cccc;
}
    .ve-success:hover {
        color: #10893e;
        background-color: #d5cccc;
    }
.ve-light {
    background-color: #d2d2d2;
    color: #2c2e30;
}
    .ve-light:hover {
        color: #d2d2d2;
        background-color: #8d8888;
    }
.total-row-count {
    font-size: .9em !important;
}
.row-sizing {
    font-size: .9em !important;
}
.row-paging {
    font-size: .9em !important;
}
.filter-text-width {
    width: 7em;
}
.btn-cogs {
    width: 50px !important;
}
.btn-created-on {
    width: 100px !important;
}
/**/
.footer-x {
    /*position: absolute;*/
    height: 40px;
    line-height: 25px;
    background-color: #fcfcfc00;
}
/**/
.notification-plate {
    animation: notification-alert-plate-change 600ms infinite alternate;
}
.notification-change {
    animation: notification-alert-color-change 600ms infinite alternate;
}
.notification-warning-change {
    animation: notification-warning-color-change 600ms infinite alternate;
}
.notification-prepare-change {
    animation: notification-prepare-color-change 600ms infinite alternate;
}
.comment-alert {
    animation: comment-change-color 500ms infinite alternate;
}
@keyframes notification-alert-plate-change {
    from {
        background-color: #08722a;
        color: #221f1f;
    }

    to {
        background-color: #0855a9;
        color: #d8d6d6;
    }
} 
@keyframes notification-prepare-color-change {
    from { /*yeşilden beyaza*/
        background-color: #093d03bb;
        color: #ebe0e0;
    }

    to {
        background-color: #d1efdb;
        color: #000;
    }
}
@keyframes notification-warning-color-change {
    from { /*sarıdan turuncuya hazırlan*/
        background-color: #e2aa0e;
        color: #000;
    }

    to {
        background-color: #d56900;
        color: #000;
    }
}
@keyframes notification-alert-color-change {
    from {
        background-color: #007bff;
        color: #dbd0d0;
    }

    to {
        background-color: #dc3545;
        color: #000;
    }
} 
/**/
@media print {
    @page {
        margin: 0.6em;
        size: auto; /* auto is the initial value */
    }
    body{
        display:block;
    }
     
}  

