/* Зміннені стилі тегів */
body {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Класи */
/* Стиль кнопки */
.abutton {
    display: inline-block;
    color: white; 
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    background-color: #04868f;
    line-height: normal;
}
.abutton:hover {
    color: white;
}
/* Налаштування знаходження елементів */
.flex {
    display: flex;
}
.align-right {
    float: right;
}
.align-left {
    float: left;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.hidden {
    display: none;
}
.r {
    margin-left: auto;
    margin-right: 0;
}
.l {
    margin-right: auto;
    margin-left: 0;
}
/* Форматування текста */
.without-underlining {
    text-decoration: none;
}

/* ID */
#error {
    color: rgb(255, 98, 98);
    font-size: 10px;
    margin: 0;
}
#small-annotation {
    font-size: small; 
    font-weight: 100;
}

/* Зміненні стилі BootStrap */
.btn-success {
    margin-top: 10px;
}

.mt-5px {
    margin-top: 5px;
}