@keyframes waSlideIn{
	from{
		opacity: 0;
		transform: translateX(120%);
	}
	to{
		opacity: 1;
		transform: translateX(0);
	}
}

/* Ã‡Ä±kÄ±ÅŸ animasyonu */
.esunus_notification.out{
	animation: enPopOut .3s ease forwards;
}

@keyframes enPopOut{
	to{
		opacity: 0;
		transform: scale(0.3) translateY(20px);
	}
}
@keyframes pulse5 {
    0% {
        box-shadow: 0 0 0 0 #7885ffb5
    }

    70% {
        box-shadow: 0 0 0 11px transparent
    }

    to {
        box-shadow: 0 0 0 0 transparent
    }
}

@-webkit-keyframes movinground {
    0%,to {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1)
    }

    60% {
        -webkit-transform: rotate(180deg) scale(1.5);
        transform: rotate(180deg) scale(1.5)
    }

    80% {
        -webkit-transform: rotate(90deg) scale(.6);
        transform: rotate(90deg) scale(.6)
    }
}
/* Sise Cevirmece modal - arka plan sohbet erisimi */
#large_modal.sise_modal_open { background: transparent !important; pointer-events: none; }
#large_modal.sise_modal_open .large_modal_in { pointer-events: auto; }

/* Alt Menu Ayirici Cizgi */
#main_input_extra {
    padding: 0 !important;
    overflow: hidden !important;
}
#main_input_extra .sub_options {
    width: 100% !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.13) !important;
    margin: 0 !important;
}
#main_input_extra .sub_options:last-child {
    border-bottom: none !important;
}


#esunus_search_box .search_bar {
    padding: 10px 12px;
}
#esunus_search_box input {
    border-radius: 10px;
}
/* Ban Listesi Tablo Tasarim */
.ban-table {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: visible;
    margin: 0 4px;
}
.ban-table .page_element {
    padding: 0 !important;
    margin-bottom: 0 !important;
}
.ban-table-header {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
    font-size: 10px;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.ban-table-header .ban-col {
    padding: 7px 5px;
    border-right: 1px solid #ddd;
    display: flex;
    align-items: center;
}
.ban-table-header .ban-col:last-child {
    border-right: none;
}
.ban-row {
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #eee;
    transition: background 0.15s ease;
    font-size: 12px;
    color: #444;
}
.ban-row:last-child {
    border-bottom: none;
}
.ban-row:hover {
    background: #fafafa;
}
.ban-row .ban-col {
    padding: 6px 5px;
    border-right: 1px solid #eee;
    min-height: 38px;
    display: flex;
    align-items: center;
}
.ban-row .ban-col:last-child {
    border-right: none;
}
.ban-col {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ban-col-nick {
    flex: 2;
    gap: 5px;
    min-width: 0;
    font-weight: 500;
}
.ban-col-ip {
    flex: 1.5;
    min-width: 0;
    font-family: monospace;
    font-size: 11px;
    color: #666;
}
.ban-col-datereas {
    flex: 1.5;
    min-width: 0;
    overflow: visible;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}
.ban-table #member_list {
    overflow: visible;
}
.ban-date-text {
    font-size: 11px;
    color: #888;
}
.ban-col-admin {
    flex: 1;
    min-width: 0;
    font-weight: 500;
    color: #555;
    font-size: 11px;
}
.ban-col-action {
    flex: 0 0 40px;
    justify-content: center;
}
.ban-avatar {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
}
.ban-avatar img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}
.ban-unban-btn {
    padding: 5px 8px;
    border-radius: 5px;
    background: rgba(220,53,69,0.1);
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ban-unban-btn:hover {
    background: rgba(220,53,69,0.25);
}
.ban-unban-btn i {
    color: #e74c3c;
    font-size: 12px;
}
/* Detay butonu ve dropdown */
.ban-detail-wrap {
    position: relative;
}
.ban-detail-btn {
    display: inline-block;
    padding: 2px 8px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 10px;
    color: #666;
    cursor: pointer;
    transition: background 0.15s;
    user-select: none;
}
.ban-detail-btn:hover {
    background: #e8e8e8;
    color: #333;
}
.ban-detail-box {
    display: none;
    position: absolute;
    top: 100%;
    left: -40px;
    right: -40px;
    margin-top: 4px;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    font-size: 12px;
    color: #333;
    white-space: normal;
    word-break: break-word;
    z-index: 200;
}