.text {

    margin-top: 50px;
    margin-bottom: 50px;
    margin-right: 200px;
    margin-left: 200px;
}

* {
    font-family: sans-serif;/**/
}

.content-table {
    border: 1px solid #0080ff;
    /*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);/*сянка*/
}

.content-table thead td, th {
    padding: 0.3rem;
    border: 1px solid white;
}

.content-table tbody td, th {
    padding: 0.3rem;
    border: 1px solid #0080ff;
}

.content-table thead tr {/**/
    background-color: #0080ff;/**/
    color: #ffffff;/**/
    text-align: left;/**/
    font-weight: bold;/**/
}

.content-table tfoot tr {/**/
    background-color: #0080ff;/**/
    color: #ffffff;/**/
    text-align: left;/**/
    font-weight: bold;/**/
}

.content-table th,/**/
.content-table td {/**/
    padding: 12px 15px;/*за генериране на пространство около съдържанието на елемент*/
}

.content-table tbody tr {/*елементът капсулира набор от редове на таблица*******************************************************/
    border-bottom: 1px solid #dddddd;/**/
}

.content-table tbody tr:nth-of-type(even) {/*посочва с един аргумент, който представлява модела за съвпадащи елементи*/
    background-color: #f3f3f3;/**/
}

.content-table tbody tr:last-of-type {/*Оформяне на последния абзац*/
    border-bottom: 2px solid #0080ff;
}

.content-table tbody tr.active-row {/*Промяна на цвета на фона на редовете*/
    font-weight: bold;/**/
    color: #0080ff;/**/
}

.modernLink {
    text-decoration: none;
    text-weight: bold;
}

input[type=button], input[type=submit], input[type=reset] {
    background-color: #0080ff;
    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: #0080ff;
}

/*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;
    border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
    color: #ffffff;
    padding: 8px 30px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: 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);
}