#notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffffff;
    color: #999090;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 1000;
    max-width: 90%;
    width: 320px;
    font-size: 15px;
    line-height: 1.5;
    transition: opacity 0.5s ease-out;
}

#notification .close {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    font-weight: 500;
    font-size: 20px;
    color: rgb(147 143 143 / 80%);
    transition: color 0.3s ease;
}

#notification .close:hover {
    color: #ffffff;
}

#notification .icon {
    margin-right: 10px;
    font-size: 18px;
}

#notification h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

#notification p {
    margin: 0;
    padding-right: 20px;
    cursor: pointer;
}

#notification a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
}

#notification .logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

@media (max-width: 480px) {
    #notification {
        bottom: 15px;
        right: 15px;
        left: 15px;
        width: auto;
        max-width: calc(100% - 30px);
        border-radius: 12px;
    }
}