﻿/*----------------------------------------------------------------------------------------------------------------------------------*/
/* Renk ve ızgara tanımlamaları  */
/*----------------------------------------------------------------------------------------------------------------------------------*/

/* Arkaplan renkleri */
.gray {
    background-color: rgba(66,66,66,0.6);
}
.altin-sarisi {
    background-color: rgb(178,136,0);
}
.koyu-haki {
    background-color: #48452a;
}
.haki {
    background-color: #787346;
}

.orman {
   background-color: #1c4d3a;
}

/*----------------------------------------------------------------------------------------------------------------------------------*/
/* Gezinme Çubuğu Stilleri   */
/*----------------------------------------------------------------------------------------------------------------------------------*/

/*.navbar {
    position: fixed;  Gezinme çubuğunun sabit kalmasını sağlar 
    top: 0;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between; /* Hamburger düğmesinin ekranın sağ üst köşede olması için LOGO (SOL) ve HAMBURGER (SAĞ) arasına boşluk koyar 
    align-items: center;
    padding: 15px 10px;
    background-color: #303529;
    /*background-color: rgba(0, 0, 0, 0.9);  Yarı saydam katman 
z-index: 10; /* Gezinme çubuğunun her zaman üstte kalmasını sağlar 
    border-bottom: 1px solid #fff;
}*/
.navbar {
    position: sticky; /* Gezinme çubuğunun sabit kalmasını sağlar */
    top: 0;
    width: 100%;
    height: 125px;
    margin: auto;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    background-color: #303529;
    z-index: 10;
}
    .navbar i {
        font-size: 0.875em;
        width:auto;
        padding-right: 8px; /* Metinle ikon arası boşluk */
        padding-top: 0; /* Yanlış hizalamaya sebep olan padding'i sıfırlayın */
        vertical-align: middle; /* Metinle dikey eksende hizalar */
    }
    .navbar a {
        display: inline-flex;
        align-items: center; /* Dikeyde tam ortalar */
        justify-content: center;
        margin: auto;
        line-height: 2rem;
        right: 50%;
    }
#logogrsl img {
    width: 7vw;
    height: auto; /* Logo Yüksekliği */
    display: inline;
    padding: 0 0 5px 5px;
    margin: 0 auto;
}
.logo a {
    text-decoration: none;
    font-size: 1.5em;
    color: white;
}
.nav-grid {
    display: grid;
    gap: 20px; /* Menü alanının yüksekliğini etkiler */
    grid-template-columns: 1fr 9fr 1fr; /* Masaüstünde 1+4 sütun (1fr = 1 parçalık alan) 1 birim logo, 4 birim menü bağlantıları */
    align-items: center; /* Sütun içeriklerini ortaya hizalar */
}
.menu {
    position: relative;
    left: 4em;
}
.menu a {
    font-family: roboto_condensed-light, Arial, sans-serif;
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 0.875em;
    transition: color 0.3s;
    display: inline-block;
    padding: 5px 5px;
    width: 8vw;
}
.menu a:hover {
    font-weight: 600;
    color: #48452a; /*rgba(46,102,48,0.9);  Menü bağlantısının üzerine gelindiği zaman metin renk değişimi haki */
    background-color: rgb(178,136,1); /* Menü bağlantısının üzerine gelindiği arka plan rengi değişimi */
    padding: 5px 5px;
    border-radius: 5px;
    }
/* Yalnızca mobil görünümde belirir */
.menu-toggle {
    display: none; /* Hamburger düğmeyi büyük ekranlarda gizler */
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    padding: 5%;
}

/*----------------------------------------------------------------------------------------------------------------------------------*/
/* --- Ana görsel düzenlemesi --- */
/*----------------------------------------------------------------------------------------------------------------------------------*/

.hero-section {
    background: url('../images/main-image-2500x1665.jpg') no-repeat center center/cover;
    max-height: 85vh;
    overflow: clip;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7); /* Ana görsellin üzerine gölge */
    z-index: 1;
}
.hero-section h1 {
    z-index: 2; /* Yazıyı ana görseldeki gölgenin üzerinde göster */
    position: absolute;
    top: 20vh; /* Metni başlık bandının altına gelmeyecek şekilde ayarla */
    border-bottom: 8px solid #787346 !important
}

/*----------------------------------------------------------------------------------------------------------------------------------*/
/* Alt Bant düzenlemesi */
/*----------------------------------------------------------------------------------------------------------------------------------*/

.foot-container {
    position: fixed; /* Gezinme çubuğunun sabit kalmasını sağlar */
    bottom: 0;
    width: 100%;
    min-height: 5vh;
    /*min-height: 5vh;*/
    height: auto;
    display: flex;
    align-items: center;
    padding: 2px 10px;
    background-color: #303529; /* rgba(66,66,66,1); Yarı saydam katman */
    z-index: 1000; /* Gezinme çubuğunun her zaman üstte kalmasını sağlar */
    color: #fff;
    text-align: center;
    font-size: 0.7em;
    border-top: 1px solid #fff;
}
.foot-grid {
    display: grid;
    gap: 20px; /* Menü alanının yüksekliğini etkiler */
    grid-template-columns: 1fr 3fr 1fr; /* Masaüstünde 1+4 sütun (1fr = 1 parçalık alan) 1 birim logo, 4 birim menü bağlantıları */
    align-items: center; /* Sütun içeriklerini ortaya hizalar */
}
footer i {
    padding-right: 5px;
}

/*----------------------------------------------------------------------------------------------------------------------------------*/
/* Başadön fonksiyonu #myBtn2 stilleri */
/*----------------------------------------------------------------------------------------------------------------------------------*/
.animate-opacity {
    animation: opac 0.8s
}
.overlay {
    font-size: 6pt;
    position: relative;
    text-align: center;
    color: white;
    z-index: 10;
}
.display-bottomright {
    position: absolute;
    right: 0;
    bottom: 0
}
#myBtn2 {
    display: none; /* Varsayılan olarak gizle */
    position: fixed; /* Sabit konumlandırma */
    bottom: 6vh; /* Alttan 20 piksel boşluk */
    right: 20px; /* Sağdan 30 piksel boşluk */
    z-index: 100; /* Diğer tüm öğelerin üstünde görünmesini sağla */
    background-color: rgba(0, 0, 0, 0.5); /* Koyu yarı saydam arka plan */
    color: white;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-align:center;
    font-size: 2.5em;
    transition: background-color 0.3s;
    }
#myBtn2:hover {
    background-color: #555;
}

/*----------------------------------------------------------------------------------------------------------------------------------*/
/* Mobil Arama Fonksiyonu Stilleri*/
/*----------------------------------------------------------------------------------------------------------------------------------*/

.enustsag {
    position: absolute;
    right: 45%;
    top: 4%;
}
.ortala {
    display: inline-block;
    width: auto;
    text-align:center!important;
}
.arama {
    visibility: hidden;
    z-index: 5;
}



/*----------------------------------------------------------------------------------------------------------------------------------*/
/* --- BÖLÜM STİLLERİ --- */
/*----------------------------------------------------------------------------------------------------------------------------------*/

#anasayfa {
    /* Genel ayarlar */
    height: 250px; /* Varsayılan (Mobil) Yükseklik */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; /* Arka plan görselinin div'i tamamen kaplamasını sağlar */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fffff0; /* Örnek: Metin rengi */
}
.section {
        padding: 0; /* Üst/Alt ve yatay boşluklar */
        min-height: 10vh; /* Her bölüm için olması gereken asgari yükseklik */
        border-bottom: 2px solid #000000;
}

#hakkinda, #uzmanliklar, #vekaletname, #iletisim, #sektorler, #yetkinlikler {
    padding: 8% 5% 1% 5%;
    margin: 0 auto;
}
#vekaletname {
    scroll-behavior: smooth;
    overflow-y: auto;
}

a.linkedin {
    display: inline;
   
}
#hakkinda h3 {
    display: inline;
}
a.linkedin i {
     font-size: 0.875em;
    border: 1px solid #0072b1;
    margin-left: 5px;
    margin-bottom: 2px;
    margin-right: 2px;
    padding: 2px 5px;
    background-color: #0072b1;
    border-radius: 5px;

}
/*----------------------------------------------------------------------------------------------------------------------------------*/
/* Daha iyi görsellik için bölümleri farklı renklendir, bölüm başlıklarını düzenle */
/*----------------------------------------------------------------------------------------------------------------------------------*/

#hakkinda, #sektorler, #iletisim, #sss {
    color: #fff !important;
    background-color: #48452a !important /* koyu haki */
}
#uzmanliklar, #yetkinlikler, #vekaletname, #page-content {
    color: #fff !important;
    background-color: #302e1c !important /*#787346*/
}


#sektorler, #iletisim, #yetkinlikler, #vekaletname {
    height: 100vh;
}
#yetkinlikler h2, #vekaletname h2, #uzmanliklar h2, #sektorler h2, #iletisim h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-align: center;
}
#vekaletname p, #iletisim p {
    padding-top: 10px;
}
#uzmanliklar li, #hakkinda li, #yetkinlikler li, #sektorler li {
    border-bottom: 2px solid #303529;
    width: 400px;
}
#sektorler ul, #yetkinlikler ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    }
#sektorler li, #yetkinlikler li {
    margin-bottom: 5px;
    margin-right:10px;
    margin-top: 10px;
    display: grid;
    grid-template-columns: 150px;
}

img .konugrsl {
    width: 40%; /* Uzmanlıklar bölümündeki konu görselinin genişliği */
    height: auto;
    display: block;
    margin: 0 auto;
    padding-top: 0.5rem;
}
/* Bölümlerdeki listeleme stilleri */
#hakkinda h3, #hakkinda div {
    margin-top: 10px;
}
#hakkinda p {
    margin-left: 10px;
}
#hakkinda ul li, #uzmanliklar ul li, #yetkinlikler ul li, #sektorler ul li, #vekaletname ul li, .navbar ul li {
    display: list-item; /* Her öğenin kendi satırında olmasını sağlar */
    padding-left: 0; /* Daha önce eklenen padding'i kaldır */
    padding-left: calc(var(--icon-size) + var(--gutter)); /* İkon ve metin arasındaki boşluğu düzenlemek için padding-left ekle */
    position: relative; /* ::before konumlandırması için */
    margin-bottom: 0.5em; /* Liste öğeleri arasına boşluk */
}
    #hakkinda ul li::before, #uzmanliklar ul li::before, #yetkinlikler ul li::before, #sektorler ul li::before, #vekaletname ul li::before {
        content: "\f192"; /* Solid Circle (Font Awesome 5 Free - Solid) */
        font-family: 'Font Awesome 5 Free'; /* Font Ailesini doğru tanımla */
        font-weight: 500; /* Solid ikonlar için ağırlık 900 olmalı */
        font-size: var(--icon-size);
        color: #fff;
        position: absolute;
        left: 0.4em;
        top: 0.1em; /* Dikey hizalama ayarı */
    }


#section-header {
    display: flex;
    justify-content: center;
    padding: 0;
    border-bottom: solid 5px #787346;
    max-height: 10vh;
}
    #section-header h2 {
        font-family: roboto_condensed-light, Arial, sans-serif;
        text-align: center;
        display: inline;
    }
#section-header i {
    display: inline;
    font-size: 2em;
    padding-right: 10px;
    padding-top: 0.4em;
}

/* İletişim bölümündeki posta kutusu ikonunun ayarlanması */
#iletisim a {
    text-decoration: none;
    color: white;
    font-size: 1em;
}
#iletisim img {
    display: inline;
    width: 20px;
    height: auto;
    margin-right: 1%;
}

/*----------------------------------------------------------------------------------------------------------------------------------*/
/* --- Sıkça Sorulan Sorular Sayfaları --- */
/*----------------------------------------------------------------------------------------------------------------------------------*/

/* Manşet Stilleri */

#page-header {
    padding: 0;
    height: auto;
    background-color: #302e1c !important; /* Koyu Haki */
    color: #fff !important;
    text-align: center;
}

#page-header h1 {
    font-size: 2.5vw;
    padding-top: 10px;
}
#page-header h3, #page-content h3 {
    font-size: 1.3vw;
    padding-left: 10px;
    padding-bottom: 10px;
}

#page-header input {
        z-index: 1000;
        position: absolute;
        top: 20vh;
        right: 1vw;
        border-radius: 5px;
        padding-left: 10px;
        width: 20vw;
        height: 5vh;
}

div .konular {
    background-color: #48452a;
}

/* Sıkça Sorulan  Stilleri */

#sss {
    margin: 0 auto;

}
#sss a {
    color: #fffff0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
    margin-left: 1%;
    background-color: rgba(66,66,66,1);
    padding: 10px 5px;
    display: inline-block;
    width: auto;
    text-align: center !important;
    border: 1px solid #fff;
}
#sss a:hover {
    color: #fff;
    font-size: 1em;
    background-color: rgb(178,136,0); /* Menü bağlantısının üzerine gelindiği arka plan rengi değişimi */
    border: 1px solid #616161;
}
#sss ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    width: 95%;
   
}
#sss li {
    margin-bottom: 5px;
    margin-top: 10px;
    display: grid;
    gap: 5px;
    grid-template-columns: 200px;
    box-shadow: none;
}
#sss ul li:nth-child(odd), #sss ul li:nth-child(even) {
    background-color: transparent;

}
#sss ul li::before {
    content:'';
    left: 0;
    
}
#sss ul li a {
    display: block;
    padding: 10px 0px;
    text-decoration: none;
    color: #fff;
    border-radius: 8px;
}
/* Sıkça sorulan sorular konu menüsünde herhangi bir seçim yapıldığı zaman devreye girer */
#sss ul li a.active-link {
    /* Style for the currently selected link */
    background-color: #fff; /* Use a distinct color, like blue */
    color: #000; /* Change text color for contrast */
    font-weight: bold;
    border: 1px solid #000;
    }

    
/*
.aciklama {
    border: 1px solid #fff;
    padding: 20px;
    border-radius: 8px;
}*/
.acklist li, .answer-content li {
        display: list-item; /* Her öğenin kendi satırında olmasını sağlar */
        padding-left: 0; /* Daha önce eklenen padding'i kaldır */
        padding-left: calc(var(--icon-size) + var(--gutter)); /* İkon ve metin arasındaki boşluğu düzenlemek için padding-left ekle */
        position: relative; /* ::before konumlandırması için */
        margin-bottom: 0.5em; /* Liste öğeleri arasına boşluk */
        padding-right: 10px;
    }
    .acklist li::before, .answer-content li::before {
        content: "\f192"; /* Solid Circle (Font Awesome 5 Free - Solid) */
        font-family: 'Font Awesome 5 Free'; /* Font Ailesini doğru tanımla */
        font-weight: 500; /* Solid ikonlar için ağırlık 900 olmalı */
        font-size: var(--icon-size);
        color: #fff;
        /* İkonu liste öğesinin soluna hizala */
        position: absolute;
        left: 0.4em;
        top: 0.1em; /* Dikey hizalama ayarı */
    }
    .acklist li:nth-child(odd), .answer-content li:nth-child(odd) {
        background-color: rgb(178,136,0);
        border-radius: 5px;
    }

    .acklist li:nth-child(even),, .answer-content li:nth-child(even) {
        background-color: #616161;
        border-radius: 5px;
    }

#contact-call-to-action {
    width:90%;
    margin: 0 auto;
    padding-bottom:20px;
}




/* ---------------------------------------------------------------------- */
/* SORU CEVAP BÖLÜMLERİ Özel Select (Dropdown) Stilleri */
/* ---------------------------------------------------------------------- */

.container {
    max-width: 100%
    /*margin: 30px auto;*/
    margin-bottom: 50px;
    /*padding: 20px;*/
    background-color: #302e1c !important;
    /*border-radius: 8px;*/
    /*
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
}
/*
#soruCevapAlani {
    margin-bottom: 10vh;
}
    */
label {
    font-family: roboto_condensed-light, Arial, sans-serif;
    display: block;
    padding: 5px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.custom-select-box {
    position: relative;
    width: 260px;
    /*
    margin-bottom: 20px;*/
    margin: 0 auto;
}

    .custom-select-box .selected {
        padding: 12px;
        border: 1px solid #888;
        border-radius: 6px;
        background: #48452a;
        cursor: pointer;
    }

        .custom-select-box .selected.disabled {
            background: #48452a;
            cursor: not-allowed;
        }

    .custom-select-box .items {
        position: absolute;
        width: 100%;
        background: #303529;
        /*background: #1c4d3a;
        border: 1px solid #ccc;*/
        border-top: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease-out;
        z-index: 99;
    }

        .custom-select-box .items.open {
            max-height: 350px;
            overflow-y: auto;
            border-radius: 0 0 6px 6px;
        }

        .custom-select-box .items div {
            padding: 10px;
            cursor: pointer;
        }

            .custom-select-box .items div:hover {
                background: #787346;
                color: #fff;
            }
/* Select ve Label'lara hafif stil ekleme */

#kategori select, #altKategori select {
    background-color: #48452a;
    color: #fff;
    padding: 10px 10px;
}

.custom-option:hover {
    background-color: #303529; /* Hover'da biraz daha koyu */
}
    .question-box {

    background-color: #48452a;  Açık gri arka plan */
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    padding: 15px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
    .question-box:hover {
        background-color: #605c38; /* Hover'da biraz daha koyu */
    }

.question-text {
    font-family: roboto_condensed-light, Arial, sans-serif;
    font-size: 1.1em;
    padding-right: 15px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}
/* .answer-content.active kuralı JS tarafından dinamik olarak yönetildiği için artık gerek yok. */

/* **Styling for the Question Text Itself** */

.toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
   
}
/*
.question-box.active .toggle-icon {
    transform: rotate(180deg);
   
}*/


.answer-content {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    color: #fff;
    background-color: #303529 /*#48452a*/;
    border-radius: 5px;
    /*padding: 5px 0px 15px 10px;  Initial padding: 0 top/bottom, 15px left/right */
    /* 🌟 THE FIX: Combine and adjust the transition for smoothness */
    /* Target both max-height and padding. Use 0.5s (or 0.6s) for a slower, smoother effect. */
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}

/* Keep the active state as it is (it enables the sliding) */
.question-box.active .answer-content {
    max-height: 1000px;
    margin-top: 10px;
    overflow-y: auto;
}

    .answer-content ul {
        display: block;
        list-style-type: none;
    }


.answer-content table {
    width: 90%;
    border-collapse: collapse;
    margin-top: 15px;
    table-layout: fixed;
    margin: auto;
}

.answer-content tr {
        background-color: #555;
}
.answer-content th {
        border: 1px solid #777;
        padding: 8px;
        width: 50%;
    }

    .answer-content td {
        border: 1px solid #777;
        padding: 8px;
    }

    .answer-content blockquote {
        width:70%;
        margin: 10px auto;
        text-align: justify;
        font-style: italic;
        font-weight: 700;
    }

#page-content strong, #hakkinda strong {
    font-family: roboto_condensed-light, Arial, sans-serif;
}

#page-content div {
    width: 95%;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 5vh;

    
}
#scbolumu {
    width: 95%;
    margin: 0 auto;
    padding-top: 10px;
}

#scbolumu .container {
    border-radius: 5px;
    padding-bottom: 15vh;
}

    #scbolumu ul {
        display: block;
        
    }

    #scbolumu ul li {
        display: list-item; /* Her öğenin kendi satırında olmasını sağlar */
        margin 0 auto;
        padding: 0; /* Daha önce eklenen padding'i kaldır */
    }

        #scbolumu ul li ::before {
            content: "\f192"; /* Solid Circle (Font Awesome 5 Free - Solid) */
            font-family: 'Font Awesome 5 Free'; /* Font Ailesini doğru tanımla */
            font-weight: 500; /* Solid ikonlar için ağırlık 900 olmalı */
            color: #fff;
            font-size: 0.8em;
            position: relative;
            padding-right: 5px;
            
        }
    
.border {
        border: 1px solid white;
        border-radius: 8px;
        box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.5);
        padding: 10px;
    }


div.answer p {
    padding: 0 0 10px 10px; /*Top, Right, Bottom, Left */
}
    div.answer p.p10, #page-content .p10 {
        padding-left: 10px; /*Top, Right, Bottom, Left */
    }

    div.answer p.p20, #page-content .p20 {
        padding-left: 20px;
    }

    div.answer p.p30, #page-content .p30 {
        padding-left: 30px;
    }

    div.answer p.p40, #page-content .p40 {
        padding-left: 40px;
    }

    div.answer p.p50, #page-content .p50 {
        padding-left: 50px;
    }
    div.answer p.p60, #page-content .p60 {
        padding-left: 60px;
    }


/* --- SSS (Q&A) STYLES --- */

/* Ensures the main Q&A area has margin/padding */
#sss .content-container {
    background-color: #616161; /* Example background if not set by Tailwind */
    padding: 10px;
}

/* Base style for each Q&A item */
.accordion-item {
    overflow: hidden; /* Important for clean borders */
    margin-bottom: 15px;
}

/* Header (Question) Styling */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background-color: rgba(178, 136, 0, 0.7);
    border: solid 1px #808080;
    transition: background-color 0.3s ease;
}

/* **Styling for the Question Text Itself** */
.question-text {
    /* Ensures the question text takes up most of the space */
    flex-grow: 1;
    /* Slightly increased font weight for emphasis */
    font-family: roboto_condensed-light, Arial, sans-serif;
    /* Use a color that stands out but remains professional */
    color: #fff;
    font-size: 1.1em;
    padding-right: 15px; /* Space between text and icon */
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between buttons */
    /* Padding is already applied via Tailwind in the CSHTML, but adding here as a fallback */
    /* padding-top: 10px; */
}

.btn-share {
    /* General button reset/style */
    padding: 6px 10px;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    background-color: #fff;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Specific button coloring and icons */

/* X (Twitter) */
.share-x {
    color: #1DA1F2; /* Old Twitter blue is often preferred for branding */
    border-color: #1DA1F2;
}

    .share-x:hover {
        background-color: #1DA1F2;
        color: white;
    }

/* Facebook */
.share-facebook {
    color: #3b5998;
    border-color: #3b5998;
}

    .share-facebook:hover {
        background-color: #3b5998;
        color: white;
    }

/* LinkedIn */
.share-linkedin {
    color: #0077b5;
    border-color: #0077b5;
}

    .share-linkedin:hover {
        background-color: #0077b5;
        color: white;
    }

/* Ensures the small text describing the buttons is subtle */
.share-buttons small {
    white-space: nowrap;
}

    

