/* Загальні стилі */
body {
    background: linear-gradient(to right, #fce3f1, #e6f2fc);
    font-family: "Segoe UI", sans-serif;
}

.navbar-nav .nav-link {
    font-size: 16px;
    color: #333;
    transition: 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #007BFF;
    font-weight: 600;
    /* border-bottom: 2px solid #007BFF; */
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .bi {
    vertical-align: middle;
}

/*.navbar .bi-person {*/
/*    display: inline-block;*/
/*    width: 20px;*/
/*    height: 20px;*/
/*}*/

/* Кнопка профілю */
.profile-icon {
    width: 32px;
    height: 32px;
    border: 1px solid #ccc;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    transition: background 0.2s;
}

.profile-icon:hover {
    background: #f0f0f0;
}

/* Заголовок */
h1 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Список тестів */
.test-list h5 {
    margin-top: 24px;
    font-weight: 600;
}

.list-group-item a {
    text-decoration: none;
    font-size: 14px;
}

.test-list {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
