﻿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: 60px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
}

/* Sürüklenebilir kapsayıcı */
.drag-scroll {
    width: 100%; /* Ekran genişliği kadar */
    height: max-content; /* Yükseklik sınırı */
    overflow: auto; /* Kaydırma çubuklarını gizler */
    cursor: grab;
    position: relative;
    border: 1px solid #ddd;
}

    .drag-scroll:active {
        cursor: grabbing;
    }

/* Tablo stili */
.table {
    min-width: 1000px; /* Geniş tablo */
    min-height: 500px; /* Uzun tablo */
    border-collapse: collapse;
}

h2 {
    color: #007BFF;
    font-size: 1.8rem;
}

.form-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        font-weight: bold;
    }

    .form-group input, .form-group select {
        width: 100%;
        padding: 10px;
        margin-top: 8px;
        font-size: 1rem;
        border-radius: 4px;
        border: 1px solid #ccc;
    }

        .form-group input:focus, .form-group select:focus {
            border-color: #007BFF;
            outline: none;
        }

.btn {
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 4px;
    border: none;
}

.btn-primary {
    background-color: #007BFF;
    color: white;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.nav-center {
    justify-content: center;
    align-items: center;
}

.nav-ul {
    width: -webkit-fill-available;
}

.rgtButton {
    width: max-content;
}

.rgtCenter {
    justify-content: center;
}

/* Masa�st� g�r�n�m�nde dikey �izgi */
.navbar-nav .nav-item {
    border-right: 1px solid rgba(255, 255, 255, 0.2); /* �izgi daha ince ve hafif g�r�ns�n */
}

/* Mobil g�r�n�mde yatay �izgi, daha hafif ve daha ince */
@media (max-width: 767px) {
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* Daha hafif ve ince �izgi */
        border-right: none; /* Dikey �izgi kalkacak */
    }
}

/* Son nav-item i�in �izgiyi kald�r */
.navbar-nav .nav-item:last-child {
    border-right: none; /* Dikeyde son ��e i�in �izgi kalkacak */
}
