.editor-container {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    background: white;
}

.editor-tabs {
    background-color: #e5e7eb;
    display: flex;
}

.editor-tab {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    background: #e5e7eb;
    color: #4b5563;
    border: none;
    outline: none;
}

.editor-tab.aktif-sekme {
    background: #f9fafb;
    color: #93c572;
}

.editor-toolbar {
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    transition: opacity 0.2s;
}

.editor-btn {
    padding: 0.25rem 0.5rem;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #374151;
}

.editor-btn:hover {
    background: #f3f4f6;
}

.editor-content {
    min-height: 400px;
    padding: 1rem;
    outline: none;
    background: white;
    line-height: 1.6;
}

.editor-content:focus {
    box-shadow: inset 0 0 0 2px rgba(147, 197, 114, 0.3);
}

.editor-textarea {
    width: 100%;
    min-height: 400px;
    padding: 1rem;
    outline: none;
    background: #1e1e1e;
    color: #d4d4d4;
    font-family: monospace;
    border: none;
    resize: vertical;
}

/* Modal Stili */
.link-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.link-modal-content {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 400px;
}

.hidden {
    display: none !important;
}
