/* custom.css */
 
/*@import url('https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css');*/  /*Gridviewlerin responsive olabilmesi için ayrıca indirdim..Gridview i  table-responsive class ı içine alınca oluyor*/
@import url('bootstrap4-1-3.min.css'); /*Gridviewlerin responsive olabilmesi için ayrıca indirdim..Gridview i  table-responsive class ı içine alınca oluyor*/

/*@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');*/
@import url('bootstrap5-3-3.min.css');

/*@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');*/
@import url('bootstrap-icons1-11-3.min.css');

/*@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css');*/
@import url('bootstrap5-0-2.min.css');


/*@import url('https://fonts.googleapis.com/icon?family=Material+Icons');*/
@import url('icon-google-material.css');


/*@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined');*/
@import url('icon-google-material-symbol-outlined.css');


 



form .form-control:focus { /* form elementlerine tıklandığında gölgenin kaldırılması ve seçili olduğunda çerçevesinin renklenmesi */
    border-color: #060932;
    box-shadow: none;
}

form .form-select:focus { /* form elementlerine tıklandığında gölgenin kaldırılması ve seçili olduğunda çerçevesinin renklenmesi */
    border-color: #060932;
    box-shadow: none;
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    color: #2f3d56;
    font-weight: bold;
    text-transform: uppercase; /* form elementleri dolu olduğundan büyük harfle yazması bold olması ve renkli gelmesi */
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px; /* Checkbox ile metin arasına boşluk ekle */
}

.checkbox-container input[type="radio"] {
    margin-right: 10px; /* Checkbox ile metin arasına boşluk ekle */
}
.radio-list input[type="radio"] + label {
    margin-right: 20px; /* İstenilen boşluk miktarı */
}


/* Özel renkleri tanımla */
:root {
    --custom-color-albatros: #273655; /* Albatros Rengi */
}

/*  Albatros Rengi Bootstrap bileşenlerinde kullan */
.btn-albatros {
    color: #fff !important;
    background-color: var(--custom-color-albatros);
    border-color: var(--custom-color-albatros);
}
    .btn-albatros:hover {
        background-color: #182134 !important;
    }
.btn-outline-albatros {
    color: var(--custom-color-albatros) !important;
    background-color: white;
    border-color: var(--custom-color-albatros);
}
    .btn-outline-albatros:hover {
        color: white !important;
        background-color: var(--custom-color-albatros);
        border-color: var(--custom-color-albatros);
    }
   

.bg-albatros {
    background-color: var(--custom-color-albatros) !important;
    color: #fff !important;
}
.border-albatros {
    --bs-border-opacity: 1;
    border-color: var(--custom-color-albatros) !important;
}
.text-albatros {
    color: var(--custom-color-albatros);
}
.table-albatros {
    --bs-table-bg: var(--custom-color-albatros);
    --bs-table-striped-bg: #2c3034;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #373b3e;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #323539;
    --bs-table-hover-color: #fff;
    color: #fff !important;
    border-color: #373b3e;
}
/* Albatros Stili Tanımlandı.. */
.BgAlbatrosStriped {
    background-image: linear-gradient(45deg, #2f3d56 27.27%, #404b61 27.27%, #404b61 50%, #2f3d56 50%, #2f3d56 77.27%, #404b61 77.27%, #404b61 100%);
    background-size: 15.56px 15.56px;
    background-image: linear-gradient(45deg, #212529 24.07%, #4d5154 24.07%, #4d5154 50%, #212529 50%, #212529 74.07%, #4d5154 74.07%, #4d5154 100%);
    background-size: 15.56px 15.56px;
}

.GridviewAlternativeBg {
    background-color: #f5f5f5 !important;
}
.GridviewYazibeyaz {
    --bs-table-color: white;
}
.BgSariTheme {
    background-color: #fdee81 !important;
}
.BgSariLightTheme {
    background-color: #fff6bb !important;
}

hr {
    box-sizing: border-box;
}

.breadcrumb {
    display: flex;
    border-radius: 10px;
    margin: auto;
    text-align: center;
    top: 50%;
    width: 100%;
    height: 40px;
    transform: translateY(-45%);
    z-index: 1;
    justify-content: center;
    margin-bottom: 0 !important;
}


.breadcrumb_item {
    height: 90%;
    background-color: white;
    color: #252525;
    font-family: 'Oswald', sans-serif;
    border-radius: 7px;
    letter-spacing: 1px;
    /* uppercase: JS ile tr-TR (İ/i); CSS text-transform Türkçe bozar */
    text-transform: none;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transform: skew(-21deg);
    box-shadow: 0 2px 2px rgba(0,0,0,0.16);
    margin: 5px;
    padding: 0 40px;
}

.material-symbols-outlined {
    font-size: inherit !important;
}

.input-group {
    z-index: 5 !important;
}

::-webkit-scrollbar {
    width: 6px; /* Çubuğun genişliği */
}

::-webkit-scrollbar-thumb {
    background: #c6c6c6; /* Çubuğun rengi */
    border-radius: 4px; /* Çubuğun köşe yuvarlaklığı */
}
.table a {
    color: black ;
    text-decoration: none;
}
 

/*gridview paging için gerekli bunlar..*/
.pager a {
    margin: 0 5px;
    text-decoration: none;
}

.pager span {
    margin: 0 5px;
    color: #fff;
    background-color: #e8cc00;
    padding-left: 5px;
    padding-right: 5px;
    /* Mevcut sayfanın rengi */
}

.table td, th { /* Gridview tablolarının hücrelerinin dikeyde ortalı olmasını sağlıyor. */
    vertical-align: middle !important;
}

