body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    background-color: #efefef;
}

header {
    background-color: #4f77a3;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative; /* Logo için pozisyon ayarı */
    font-weight: bold; /* Başlığı daha koyu yap */
    line-height: 3;
    height: 50px;
}

header img {
    position: absolute; /* Logo konumlandırma */
    left: 10px; /* Sol taraftan boşluk */
    top: 10px; /* Üst taraftan boşluk */
    height: 40px; /* Logo yüksekliği */
}

.container {
    display: flex;
    height: calc(100% - 60px);
}

aside {
    flex: 0.8; /* Daraltma uygulandı: eski değer 1'den %20 daha az */
    background-color: #343a40;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
}

aside nav ul {
    list-style: none;
    padding: 0;
    height: 100%;
}

aside nav ul li a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
}

aside nav ul li a:hover {
    background-color: #007bff;
    color: white;
}

section {
    flex: 3.2; /* Genişletme uygulandı: eski değer 3'ten daha fazla */
    padding: 20px;
    overflow-y: auto;

    flex-direction: column;
    align-items: flex-start;
}

section h2 {
    margin-top: 0;
}

#main
{
    padding-left: 0px;
}

select, button {
    width: 280px;
    height: 40px!important;
    margin-bottom: 10px;
}

input[type=password]{
    width: 272px;
    height: 27px!important;
    margin-bottom: 10px;
}

button {
    width: 200px;
}

label {
    margin-top: 10px;
    display: block;
}

/* Yeni açıklama alanı stilleri */
.description-area {
    width: 800px;
    height: 150px;
    background-color: #e0e0e0; /* Açık gri renk */
    margin-top: 20px; /* Üstten boşluk */
    padding: 10px; /* İç boşluk */
    box-sizing: border-box; /* Padding'i boyuta dahil et */
    color: #333; /* Koyu gri font rengi */
    font-family: 'Calibri', sans-serif; /* Font ailesi Calibri */
}

.selected-menu
{
    color: #ed5656;
    display: block;
    padding: 10px;
    text-decoration: none;

}

.menu-group {
    display: block;
    padding: 10px;
    padding-left: 20px;
    color: white;
    text-decoration: none;

}

.code-header
{
    border-top-left-radius: 5px;
    border: solid 1px #b5b5b5;
    width: 85%;
    margin-bottom: -11px;
    background: lightgray;
    font-size: small;
    height: 25px;
    border-top-right-radius: 5px;
    text-align: right;
}

.copy-button
{
    cursor: pointer;
}

.loading
{
    width: 40px;
    height: 40px;
    display: none;
}
