body {
    background: linear-gradient(to right, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.profile-widget {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.offline-msg-floating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.offline-msg-floating-img {
    width: 100px;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    position: relative;
    margin-right: 20px;
}

.online-indicator {
    width: 10px;
    height: 10px;
    background-color: #00ff00;
    border-radius: 50%;
    position: absolute;
    right: 5px;
    bottom: 10px;
    border: 1px solid rgba(0, 0, 0, 0.5); /* Прозора обвідка */
}

.user-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.username {
    font-size: 18px;
    font-weight: bold;
}

.status {
    font-size: 16px;
    margin-top: 5px;
}

.online {
    color: #00ff00;
}

.offline-profile-txt {
    font-size: 16px;
    margin: 20px 0;
    font-weight: 500;
    line-height: 1.4;
}

.offline-btn {
    background-color: #EC008C;
    padding: 15px 30px;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.offline-btn:hover {
    background-color: #d6007e;
}

.offline-btn {
    display: inline-block;
    margin: 0 0 20px;
}

/* Адаптивні стилі для мобільних пристроїв */
@media only screen and (max-width: 600px) {
    .offline-msg-floating {
        flex-direction: column;
        align-items: center;
    }

    .offline-msg-floating-img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .user-info {
        align-items: center;
    }
}
