/*
Q-smart Aufrufanlagen GmbH
*/
/* 
    Created on : Mar 30, 2018, 3:57:04 PM
    Author     : tolga
*/
html {
    height: 100%;
    min-width: 325px;
}
body{   
    height: 100%;
    padding-top: 60px;
    /*padding-bottom: 62px;*/
    min-height: 100vh;
}

.table-font-resize{
    font-size: 1.0vw;
}
.table-font-resize thead{
    font-size: 2vw;    
}

.dropdown-divider {
    border-color: rgba(255,255,255,0.1);
}

#navbar-head {
    padding-top: 60px; 
}

@media screen and (max-width: 767px) {
    body {
        min-width: 325px;
        height: 100%;
        padding-top: 60px; 
        /* padding-bottom: 50px; */
        min-height: 100vh;
    }
    #navbar-head {
        padding-top: 60px;        
    }
}

#bifra_container{
    margin-bottom: 30px;
    padding-bottom: 70px;
    min-height: 100vh;
}

.fill { 
    min-height: 100vh;
}

.breadcrumb {
    padding: 1px 25px !important;
    font-size: normal;
}

/* Add for Jquery File Uploader Bootstrap 4.1 compatiblity */
.fade.in {
    opacity: 1
}

.bd-callout {
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid #eee;
    border-left-width: .35rem;
    border-radius: .25rem
}

.bd-callout h4 {
    margin-top: 0;
    margin-bottom: .25rem
}

.bd-callout p:last-child {
    margin-bottom: 0
}

.bd-callout code {
    border-radius: .25rem
}

.bd-callout+.bd-callout {
    margin-top: -.25rem
}

.bd-callout-info {
    border-left-color: #5bc0de
}

.bd-callout-info h4 {
    color: #5bc0de
}

.bd-callout-warning {
    border-left-color: #f0ad4e
}

.bd-callout-warning h4 {
    color: #f0ad4e
}

.bd-callout-danger {
    border-left-color: #d9534f
}

.bd-callout-danger h4 {
    color: #d9534f
}

.glyphicon {
  transition: .3s transform ease-in-out;
}
.collapsed .glyphicon {
  transform: rotate(-180deg);
}

.popover {
    max-width: 500px;
}

/* Placeholder-glow benzeri efekt */

.placeholder-parent{
    cursor: wait;        
}

.placeholder-glow {
    display: inline-block;
    min-height: 1em;
    animation: placeholder-glow 2s ease-in-out infinite;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
    color: transparent !important; /* Yazıyı görünmez yapar */
    user-select: none;  /* Tıklamayla seçilmesini engeller */
    pointer-events: none; /* Tıklamayı tamamen engeller */
}
  
  @keyframes placeholder-glow {
    0% {
      opacity: 0.4;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.4;
    }
  }
  
  .flash {
    animation: flash-animation 0.5s linear 1;
}

@keyframes flash-animation {

    0%,
    100% {}

    50% {
        background-color: darkgray;
        color: white;
    }
}


table.sortedTable th {
    cursor: pointer;
    position: relative;
    user-select: none;
}

/* Varsayılan sıralama göstergesi */
table.sortedTable th::after {
    content: "#";
    /* Varsayılan simge */
    position: absolute;
    right: 8px;
    opacity: 0.5;
    font-size: 0.8em;
}

/* Artan sıralama için */
table.sortedTable th[aria-sort="ascending"]::after {
    content: "\25B2";
    /* Yukarı ok */
    opacity: 1;
}

/* Azalan sıralama için */
table.sortedTable th[aria-sort="descending"]::after {
    content: "\25BC";
    /* Aşağı ok */
    opacity: 1;
}

