html,
body {
    height: 100%;
}

.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
    padding: 0 0 60px;
}

.wrap>.container {
    padding: 70px 15px 20px;
}

.footer {
    height: 60px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.text-center {
    text-align: center;
}

.has-feedback {
    position: relative;
}

.form-group {
    margin-bottom: 15px;
}

.has-feedback .form-control {
    padding-right: 42.5px;
}

a,
a:hover {
    text-decoration: none;
}


.jumbotron {
    text-align: center;
    background-color: transparent;
}

.jumbotron .btn {
    font-size: 21px;
    padding: 14px 24px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a[data-sort]:after,
a.asc:after,
a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'fontawesome';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}

a[data-sort]:after {
    content: "\f0dc";
}

a.asc:after {
    content: "\f0d7";
}

a.desc:after {
    content: "\f0d8";
}

.sort-numerical a.asc:after {
    content: "\e153";
}

.sort-numerical a.desc:after {
    content: "\e154";
}

.sort-ordinal a.asc:after {
    content: "\e155";
}

.sort-ordinal a.desc:after {
    content: "\e156";
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

.col-sm-offset-6 {
    margin-left: 50%;
}

ul.kv-checkbox-list {
    padding-left: 20px;
}

button.close {
    appearance: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

button.fileinput-remove-button {
    display: none;
}


/* Base list styling */
.folder-list, .sub-folder-list {
    list-style: none;
    /* Remove default bullets */
    padding-left: 20px;
    /* Indent sub-items */
    margin: 0;
}

.folder-list {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    max-width: 400px;
    margin: 20px auto;
}

.folder-list li, .sub-folder-list li {
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Style for folder items */
.folder-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.folder-item:hover {
    background-color: #e9e9e9;
}

.folder-icon, .file-icon {
    font-size: 1.5em;
    margin-right: 8px;
    color: #f7d16b;
    /* Green for folders */
}

.file-icon {
    color: #2196F3;
    /* Blue for files */
    margin-left: 15px;
    /* Indent file icon */
}

.folder-name {
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    color: #58595b;
}

/* Initially hide sub-folder lists */
.sub-folder-list {
    display: none;
    padding-left: 15px;
    /* Further indent sub-folders */
}

/* Active folder item style (optional) */
.folder-item.active {
    background-color: #dbeaff;
}