.create-article-btn-round {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px; /* Высота кнопки */
    border-radius: 50%; /* Делаем кнопку круглой */
    /* background-color: #28a745; */
		background: #f4f6f9; /* Зеленый цвет фона */
    color: rgb(0, 0, 0); /* Цвет иконки */
    font-size: 18px; /* Размер иконки */
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
		padding: 4px 8px;
}

.create-article-btn-round:hover {
		/* background: #218838; */
		background: #f4f6f9;
		color: #218838;
    transform: scale(1.0);
}

.create-article-btn-round i {
    margin: 0; /* Убираем отступы у иконки */
}


.button-create-articles{
display: inline-block;
    padding: 10px 8px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
		background-color: #28a745;
}

.button-create-articles:hover{
background: #218838;
}