/* استایل نوتیفیکیشن بار سئو کندو */
.seokando-nb {
    position: fixed;
    z-index: 999999;
    padding: 15px 50px 15px 20px;
    box-sizing: border-box;
    border-radius: 0 0 6px 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seokando-nb .seokando-nb-content {
    flex-grow: 1;
}

#seokando-nb-close {
    background: transparent;
    border: none;
    font-size: 24px;
    color: inherit;
    cursor: pointer;
    padding: 0 10px 0 10px;
    line-height: 1;
}

/* موقعیت‌ها */
.seokando-nb-top {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 6px 6px;
}

.seokando-nb-bottom {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 6px 6px 0 0;
}

.seokando-nb-sidebar-left {
    top: 20%;
    left: 0;
    height: auto;
    max-width: 250px;
    flex-direction: column;
    border-radius: 0 6px 6px 0;
    padding: 20px;
}

.seokando-nb-sidebar-right {
    top: 20%;
    right: 0;
    height: auto;
    max-width: 250px;
    flex-direction: column;
    border-radius: 6px 0 0 6px;
    padding: 20px;
}

.seokando-nb-fullwidth {
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    border-radius: 0;
}

/* انیمیشن‌ها */

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
.animate-shake {
    animation: shake 0.5s infinite;
}

@keyframes fade {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}
.animate-fade {
    animation: fade 3s infinite;
}

@keyframes slideInLeft {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}
.animate-slideInLeft {
    animation: slideInLeft 0.5s forwards;
}

@keyframes slideInRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}
.animate-slideInRight {
    animation: slideInRight 0.5s forwards;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}
.animate-rotate {
    animation: rotate 2s infinite;
}
