
/* Grundlegende Stile für die Seite */
body {
    background-color: darkgray;
    font-family: Arial, sans-serif;
}

.container {
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    font-size: 24px;
    color: #333;
}

input#search-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.Btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    color: #fff;
    background-color: #28a745;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
}

    .Btn:hover {
        background-color: #218838;
    }

/* Stile für jstree */
#treeview {
    margin-top: 10px;
}

.jstree-default .jstree-anchor {
    line-height: 30px;
    height: 30px;
    padding: 0 5px;
    color: #333;
}
.jstree-contextmenu {
    z-index: 9999 !important;
}
.jstree-default .jstree-icon {
    margin-right: 5px;
}

/* Spezifische Stile für Knoten ohne Links oder URLs */
.jstree-no-link > .jstree-anchor {
    color: purple;
}

    .jstree-no-link > .jstree-anchor .jstree-icon {
        color: red;
    }

/* Zusätzliche Stile für Kontextmenü */
.context-menu-item {
    padding: 5px 10px;
    cursor: pointer;
    z-index: 9999 !important;
}

    .context-menu-item:hover {
        background-color: darkgray;
    }

.context-menu-separator {
    height: 1px;
    background-color: #e0e0e0;
    margin: 5px 0;
}

/* Stile für die Alert-Boxen */
.alert {
    position: relative;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: inherit;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.jstree-no-link > .jstree-anchor {
    color: red;
}


