:root {
    --yellow-dirty: #f2be47;
    --brown-dark: #333;
    --blue-dark: #3f4347;
    --color-ddd: #ddd;
    --color-nav: whitesmoke;
    --btn-hover: black;
  }

/* file.html */
  .control-label {
    padding-top: 6px;
    text-align: right
}

/* archfile_confirm_delete.html, file.html */
.show-image {
    display: table;
    margin-top: 15px
}

/* folderview.html */
.btn-rounded {
    border-radius: 20px;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 3px;
}

/* newl */
.nav-color {
    background-color: var(--color-nav);

}

.logo {
	background: url('../images/logo.png') no-repeat 10px 5px;
	width: 150px;
	height: 60px;
}

a {
    text-decoration: none;
}

.btn-rks-style {
    background-color: var(--blue-dark);
}

.btn-rks-style:hover {
    background-color: var(--btn-hover);
}

#collapsibleNavId div {
    background-color: white;
    }

.rks-tool {
    display: flex;
    background-color: var(--color-ddd);
    height: 60px;
    align-items: center;
    position: sticky;
    top: 0px;
    z-index: 50;
}

.rks-folder {
    display: flex; align-items: center;
}

.rks-folder a, span {
    margin-left: 10px;
}

.folder {
    margin-left: 20px !important;
}

.rks-folder span {
    margin-right: 20px;
}

.rks-line {
    display:block;
    width:98%; /*or whatever width you want the effect of <hr>*/
    border-top: 1px solid var(--color-ddd);
}

.treeview-animated {
    height: 100%;

}

.rks_card {
    height: 60px;
    width: 80px;
    overflow: hidden;
}

.rks_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* подсказки */

[data-title] {
    position: relative; /* Относительное позиционирование */
  }
[data-title]::after {
    content: attr(data-title); /* Выводим текст из атрибута data-title */
    position: absolute; /* Абсолютное позиционирование */
    top: -0.5em; /* Положение подсказки */
    opacity: 0; /* Скрываем подсказку, делая её прозрачной */
    transition: 0.5s; /* Время появления подсказки */
    pointer-events: none; /* Подсказка не реагирует на курсор */
    background: var(--blue-dark); /* Цвет фона */
    color: #fff; /* Белый цвет текста */
    padding: 0.5em; /* Поля вокруг текста */
  }
  [data-title]:hover::after {
    opacity: 0.5; /* Показываем подсказку */
  }

  #copy[data-title]::after {
    left: -310px; /* Положение подсказки */
  }

  #del[data-title]::after {
    left: -165px; /* Положение подсказки */
  }

  #rel[data-title]::after {
    left: -135px; /* Положение подсказки */
  }

  #relf[data-title]::after {
    left: -180px; /* Положение подсказки */
  }

.mybtn-add-file{
    position: absolute;
    top: -500px;
  }
