/* Logo Bluezick - SVG */
.bluezick-logo {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #0066CC;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.bluezick-logo span {
    color: #0099FF;
}

.bluezick-logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    background-color: #0066CC;
    border-radius: 6px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bluezick-logo-icon::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 3px;
    transform: rotate(45deg);
}

.bluezick-logo-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #0099FF;
    border-radius: 2px;
    transform: rotate(45deg);
}
