body {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.login-body {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
#loadingText{
    background: #336699!important;
    color:#fff!important;
    font-size:24px;
    font-weight: bolder;
}
.navbar-custom {
    background-color: #004080; /* Koyu mavi arka plan */
    color: white;
}
.btn-flat {
    border: none; /* Düz kenarlar için */
    box-shadow: none; /* Gölge kaldırılır */
    border-radius: 0px;
}
.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: white;
}
.navbar-custom .nav-link:hover {
    color: #efefef; 
}
.container-custom {
    margin-top: 70px;
    max-width: 100%; /* Daha geniş olması için */
}

.btn-dashboard {
    width: 100%; /* Butonları %100 genişlik yap */
}
.login-container {
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.notify {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
    min-width: 300px;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}
.loading-screen p {
    margin-top: 10px;
    font-size: 18px;
    color: #007bff;
}

.card-header h5 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: bold;
}
.card-body .row {
    display: flex;
    margin-bottom: 10px;
    justify-content: flex-start;
    align-items: center;
}

.icon {
    width: 30px; /* İkonlar sabit genişlikte */
    text-align: center;
}
.value{
    flex: 1;
}
.fiyat {
    font-size: 1.5rem; /* Büyük font */
    text-align: right; /* Sağa yasla */
    width: 100%; /* Tam genişlik */
    display: block; /* Blok görünüm */
}

.list-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.list-item:last-child {
    border-bottom: none;
}
.list-item .price {
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #336699;
    color:#fff;
    padding: 5px 10px;
    border-radius: 5px;
}
.list-item .delete-btn {
    float: right;
    display: flex;
    align-items: center;
    gap: 5px;
}
.miktar-satis {
    background-color: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.miktar-iade {
    background-color: #dc3545;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.format-number{
    text-align: right!important;
}

.card-body-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.info-item i {
    color: #6c757d;
}
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.button-group .btn {
    flex: 1;
}
.card-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fs14{
    font-size: 14px;
}
.fs12{
    font-size: 12px;
}
.tdFixed{
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    max-width: 150px;
}
#addressList {
    max-height: 300px;
    overflow-y: auto; /* Dikey kaydırma çubuğu */
    border-radius: 5px;
    background-color: #f8f9fa; /* Hafif gri arka plan */
}

/* Katalog Sipariş Stilleri */
.katalog-kart {
    transition: border-color 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}
.katalog-kart:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.katalog-kart-aktif {
    border-color: #28a745 !important;
    box-shadow: 0 0 8px rgba(40,167,69,0.3);
}
.katalog-kart .card-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.katalog-input-satis-label {
    background-color: #28a745;
    color: #fff;
    font-weight: bold;
    border-color: #28a745;
}
.katalog-input-iade-label {
    background-color: #dc3545;
    color: #fff;
    font-weight: bold;
    border-color: #dc3545;
}
.katalog-kart .format-number {
    text-align: right !important;
    font-size: 13px;
}
#katalogGrid {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 5px;
}
#katalogSearchInput {
    position: sticky;
    top: 0;
    z-index: 10;
}