.swn-notification {
    padding: 15px;
    text-align: center;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    opacity: 0;
    animation: swnSlideIn 0.5s ease-out forwards;
}

.swn-position-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
}

.swn-position-center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    max-width: 600px;
}

.swn-position-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
}

.swn-dismiss {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
}

.swn-content {
    margin-right: 30px;
    line-height: 1.5;
}

@keyframes swnSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}