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;
}

table {
    font-size: 0.75rem;
}

th, td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Mobilde yan menüyü üstte göster ve içerik alanını genişlet */
@media (max-width: 992px) {
    body {
        flex-direction: column;
    }

    /* Sol menünün tüm genişliği kullanmasını sağla */
    body > .d-flex.flex-column.flex-shrink-0 {
        width: 100% !important;
        padding: 1.25rem 1rem !important;
    }

    /* İçerik alanı sıkışmasın */
    body > .container-fluid.flex-grow-1 {
        width: 100% !important;
    }
}

.sidebar {
    width: 250px;
    background-color: #343a40;
    color: white;
    flex-shrink: 0;
    padding: 1rem;
}

    .sidebar a {
        color: white;
        text-decoration: none;
        padding: 0.5rem 0;
        display: block;
    }

        .sidebar a:hover {
            background-color: #495057;
            border-radius: 4px;
        }

.content {
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto;
}

/* Bile�enler aras� bo�luk eklemek i�in margin kullan */
#deleteButton,
#duplicateButton,
#labelFilter,
#deviceFilter,
#ChromosomeFiltertxt,
#minPositionFiltertxt,
#maxPositionFiltertxt,
#qualityFiltertxt {
    margin: 10px 5px; /* Yatayda ve dikeyde bo�luk ekler */
}

#deleteButton{
    color:red;
}
/* Bile�enlerin genel bir d�zen i�inde g�r�nmesi i�in display block yap */
button, select, input {
    display: inline-block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
    background: url('../img/Designer.png') no-repeat center center/cover;
    color: black;
    text-align: center;
    padding: 30px 20px;
}

.header-content h1 {
    font-size: 4.5rem;
    margin-bottom: 10px;
}

.header-content p {
    font-size: 2.2rem;
}

.intro {
    background-color: white;
    padding: 10px 10px;
    text-align: center;
}

    .intro h2 {
        color: #4CAF50;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .intro p {
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto;
    }

.features {
    background-color: #f4f4f4;
    padding: 10px 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features h2 {
    color: #4CAF50;
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-item {
    display: inline-block;
    width: 30%;
    margin: 10px;
}

.customcontainer {
    text-align: center;
    padding: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px; /* �ste�e ba�l� */
}