
.gradient-custom {
    background-color: rgb(222, 230, 236);
    /* #e6f6fe */
}



.rgb{
    background-color: #0331bb;
    color: white;
    box-shadow: 5px 5px 13px rgba(134, 134, 134, 0.747);
    border-radius: 10px;
    padding:8px;
    border: none;
}
.rgb:hover{
    background-color: #0033cc;
    color: white;
    transition: 0.3s;
}

.main-rgb-outline{
    background-color: #7366FF ;
    color: white;
    font-weight: bold;
}

.main-rgb-outline:hover{
    background-color: #aea7ff ;
    color: #5546ff ;
}

.main-items{
    background-color: #5546ff;
    border-radius: 10px;
}


.small-items{
    color: white;
    font-weight: bold;
    padding: 5px;
    margin-top: 5px;
    transition: 0.3s;
    border-bottom: 1px solid #5546ff;
}

.message-cl{
    border: 1px solid #01c090;
    color: white;
    font-weight: bold;
    background-color: #01c090;
}

.message-cl:hover{
    border: 1px solid #01c090;
    color: #01c090;
}

.follow-cl{
    background-color: #7366FF ;
    color: white;
    font-weight: bold;
}

.follow-cl:hover{
    border: 1px solid #5546ff;
    color: #5546ff ;
}

.small-items:hover{
    color: white;
    border-bottom: 1px solid #201974;
    background-color: #0033cc;
}

.show-info{
    float: left;
    background-color: #01c090 ;
    color: white;
    font-weight: bold;
}

.show-info:hover{
    background-color: #b5f8e7;
    color: #019b74;
}

.rgb-outline{
    border: 1px solid rgba(1, 31, 94, 0.973);
    color: rgba(1, 31, 94, 0.973);
}

.rgb-outline:hover{
    background-color: rgba(1, 31, 94, 0.973);
    color: white;
}


.blurred {
    filter: blur(8px);
    transition: filter 0.3s ease;
}

.blurred.active {
    filter: blur(0);
}

.content {
    cursor: pointer;
}


.chat-button {
    position: relative;
    background-color: #7366FF;
    padding: 4px 350px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 20px;
    border: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.3s;
}

.chat-button:hover{
    background-color: #5e52dd;
    color: white;
}
.notification-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(90deg, #0033cc, #2494fd, #4ea9fd, #4ea9fd, #ff0000);
    background-size: 200% 100%;
    animation: glowing 3s ease-in-out infinite;
    opacity: 0; /* initially hidden */
    transition: opacity 1s ease-out; /* smooth fade-out */
}
@keyframes glowing {
    0% { background-position: 200% 50%; }
    100% { background-position: 0% 50%; }
}



/* Notif */
.chat-button {
    padding: 4px 100px;
    color: white;

}

.notification-indicator1 {
    position: absolute;
    width: 100%;
    height: 50px;

    background: linear-gradient(90deg, #73bbff25, #69b6fd5e, #43b3fd96);
    background-size: 200% 100%;
    animation: glowing1 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 1s ease-out;
}

@keyframes glowing1 {
    0% { background-position: 200% 50%; }
    100% { background-position: 0% 50%; }
}


/* modal */
.avatar-border {
    position: relative;
    display: inline-block;
    padding: 6px;
    border-radius: 50%;
    border: 6px solid transparent;
    background-origin: border-box;
    background-clip: content-box, border-box;
    animation: move-border 3s linear infinite;
}

.avatar-border img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

.input-css{
    background-color: #3c6dff54;
    border: 2px solid #0033cc;
    transition: 0.3s;
}
.input-css:hover{
    background-color: #3c6dff54;
    border: 2px solid #01c090;
}

@keyframes move-border {
    0% {
        border-color: #0033cc;
    }
    0% {
        border-color: #3306fd;
    }
    60% {
        border-color: #01c090;
    }
    100% {
        border-color: #7106fd;
    }
}
