/* Üst Menü - START -*/
.nav-spacer {
    background-color: #1a1a2a;
    height: 60px;
    width: 100%;
    margin-bottom: 40px;
}

/* Üst Menü - END -*/

/* Sol Menü - START */
.sidebar-nav-wrapper {
    position: sticky;
    top: 20px;
}

.sidebar-header {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2a;
    margin-bottom: 15px;
    padding-left: 5px;
    border-left: 5px solid var(--primary-color);
    line-height: 1;
}

.sidebar-list-group {
    border-radius: 8px;
    overflow: hidden;
    border: none;
}

.sidebar-list-group .list-group-item {
    border: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    transition: all 0.2s ease;
}

.sidebar-list-group .list-group-item:last-child {
    border-bottom: none;
}

.sidebar-list-group .list-group-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding-left: 25px;
}

.sidebar-list-group .list-group-item.active {
    background-color: var(--primary-color-light);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    font-weight: 600;
}

/* Sol Menü - END */


/* Sağ Taraf - Genel Metin - START - */

/* Ana Başlık - START - */
.page-heading {
    color: #1a1a2a;
    font-weight: 700;
    font-size: 2rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

/*Başlık altındaki çizgi*/
.page-heading::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Ana Başlık - END - */

/*Paragraf Genel*/
.general-content-wrapper p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: justify;
}

/*Karşılama metni (Solda gri çizgi, yazı biraz daha büyük olan kısım)*/
.general-content-wrapper .lead {
    color: #1a1a2a;
    font-size: 1.15rem;
    font-weight: 400;
    border-left: 4px solid #dee2e6;
    padding-left: 15px;
    margin-bottom: 30px;
}

/* Başlık Çeşitleri - START - */
.general-content-wrapper h3 {
    /* h3 başlıklarda bordo yazı fontu*/
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.general-content-wrapper h4 {
    /* h4 başlıklarda koyu gri yazı fontu*/
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Başlık Çeşitleri - END - */


/* Listeler - START - */
.general-content-wrapper ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.general-content-wrapper ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.general-content-wrapper ul li::before {
    /* ' > ' işareti */
    content: "\F285";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: bold;
}

/* Listeler - END - */