html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0px !important;
}

.vh70 {
    max-height: 70vh;
    overflow-y: auto;
}
.vh75 {
    max-height: 75vh;
    overflow-y: auto;
}

#toast-container {
    position: fixed;
    top: 5rem; 
    right: 2rem;
    z-index: 12000;
    pointer-events: none;
}

    #toast-container .toast {
        pointer-events: auto;
        margin-bottom: 0.5rem; 
    }

@keyframes AnimateGooGradient {
    0% {
        background-position-x: 0%;
    }

    50% {
        background-position-x: 100%;
    }

    100% {
        background-position-x: 0%;
    }
}

.create-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background-image: linear-gradient(to right, #EA2804, #e54fe2, #ed686c);
    background-size: 250%;
    background-position: 0%;
    border: 1px solid transparent;
    border-radius: 0.375rem; /* opsiyonel yuvarlatma */
    animation: AnimateGooGradient 3s ease infinite;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.w250{
    width:250px;
}

#currentPageInfo,
#prevPageBtn,
#nextPageBtn {
    font-size: 12px !important;
}