

/*edit buttons collors start*/
a:link {/**/
  color: black;
  background-color: transparent;
  text-decoration: none;
}
a:visited {/**/
  color: #ff00bf;
  background-color: transparent;
  text-decoration: none;
}
a:hover {/**/
  color: red;
  background-color: transparent;
  text-decoration: underline;
}
a:active {/**/
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}
/*edit buttons collors end*/


.radio-item{/**/
    color:#b7b7b7;
    background-color: #dfdfdf;
}

.text {/**/
    margin-top: 50px;
    margin-bottom: 50px;
    margin-right: 200px;
    margin-left: 200px;
}

* {/**/
    font-family: sans-serif;/**/
}

.content-table {/**/
    border: 1px solid #d62418;
    /*border-collapse: collapse;//дали границите на таблицата да се свиват в една граница или да бъдат разделени*/
    margin: 25px 0;/*създаване на пространство около елементи, извън дефинирани граници*/
    font-size: 0.9em;/**/
    min-width: 400px;/*минималната ширина на елемент*/
    border-radius: 5px 5px 0 0;/**/
    overflow: hidden;/*ако съдържанието е по-голямо от клетката не се вижда*/
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);/*сянка*/
    overflow-y: auto;/*fixed thead*/
    height: 110px;/*fixed thead*/ 
}

/*fixed thead*/
thead{
    position: sticky;
    top: 0;
}

.content-table thead td, th {/**/
    padding: 0.3rem;
    border: 1px solid white;
}

.content-table tbody td, th {/**/
    padding: 0.3rem;
    border: 1px solid #d62418;
}

.content-table thead tr {/**/
    background-color: #d62418;/**/
    color: #dfdfdf;/**/
    text-align: left;/**/
    font-weight: bold;/**/
}

.content-table tfoot tr {/**/
    background-color: #d62418;/**/
    color: #dfdfdf;/**/
    text-align: left;/**/
    font-weight: bold;/**/
}

.content-table th,/**/
.content-table td {/**/
    padding: 12px 15px;/*за генериране на пространство около съдържанието на елемент*/
}

.content-table tbody tr {/*елементът капсулира набор от редове на таблица*******************************************************/
    border-bottom: 1px solid #b7b7b7;/**/
}

.content-table tbody tr:nth-of-type(even) {/*посочва с един аргумент, който представлява модела за съвпадащи елементи*/
    background-color: #b7b7b7;/**/
}

.content-table tbody tr:last-of-type {/*Оформяне на последния абзац*/
    border-bottom: 2px solid #d62418;
}

.content-table tbody tr.active-row {/*Промяна на цвета на фона на редовете*/
    font-weight: bold;/**/
    color: #d62418;/**/
}

.modernLink {/**/
    text-decoration: none;
    text-weight: bold;
}

input[type=button], input[type=submit], input[type=reset] {/**/
    background-color: #d62418;
    border: none;
    color: white;

    font-size: 1em;
    font-weight: bold;
    border: 1px solid white;

    padding: 8px 16px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
}

/*the container must be positioned relative:*/
.custom-select {/**/
    position: relative;
    font-weight: bold;
}

.custom-select select {/**/
    display: none; /*hide original SELECT element:*/
}

.select-selected {/**/
    background-color: #d62418;
}

/*style the arrow inside the select element:*/
.select-selected:after {/**/
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;/*transparent-pylna prozrachnost*/
    border-color: #f5f5f5 transparent transparent transparent;/*transparent-pylna prozrachnost*/
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {/**/
    border-color: transparent transparent #f5f5f5 transparent;/*transparent-pylna prozrachnost*/
    top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {/**/
    color: #dfdfdf;
    padding: 8px 30px;
    border: 1px solid transparent;/*transparent-pylna prozrachnost*/
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;/*transparent-pylna prozrachnost/rgba(0, 0, 0, 0.1)-черно 10% прозрачност*/
    cursor: pointer;
    user-select: none;
}

/*style items (options):*/
.select-items {/**/
    position: absolute;
    background-color: #d62418;/*old-DodgerBlue*/
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {/**/
    display: none;
}

.select-items div:hover, .same-as-selected {/**/
    background-color: rgba(0, 0, 0, 0.1);/*rgba(0, 0, 0, 0.1)-черно 10% прозрачност*/
}