/* Klasör ve dosya adları için genel stil */
.folder-item .name,
.file-item .name {
    text-transform: capitalize; /* İlk harfi büyük yapar */
}

/* Sürükleme sırasındaki stil */
.sortable-ghost {
    opacity: 0.5;
    background-color: #f3f4f6;
}

/* Sürükleme hedefi stil */
.sortable-drag {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

#textEditorContent {
    font-family: 'Consolas', 'Courier New', monospace;
    line-height: 1.4;
    tab-size: 4;
    white-space: pre-wrap;
    word-wrap: break-word;
    background-color: white;
    color: #333;
}

#textEditorModal .modal-content {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#textEditorModal .menu-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.viewer-toolbar>ul>li {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

.viewer-title{
    display: none !important;
} 