.hashtags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.hashtags-list a {
    text-decoration: none;
    background-color: #f0f0f0;
    color: #333;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.hashtags-list a:hover {
    background-color: #007bff;
    color: #fff;
}

.radio-toolbar {
    margin: 10px;
}

.radio-toolbar input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
}

.radio-toolbar label {
    display: inline-block;
    background-color: #ddd;
    padding: 10px 20px;
    font-family: sans-serif, Arial;
    font-size: 16px;
    border: 2px solid #444;
    border-radius: 0;
    width: 49%;
    text-align: center;
}

.radio-toolbar label:hover {
    background-color: #e0e1e0;
}

.radio-toolbar input[type="radio"]:focus+label {
    border: 2px dashed #444;
}

.radio-toolbar input[type="radio"]:checked+label {
    background-color: #6d6d6d;
    border-color: #696969;
    color: #FFF;
    font-weight: bold;
}

.otpActivate {
    display: none;
    padding: 30px 0px;
}