.fake-notification {
    position: fixed;
    bottom: 20px;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    align-items: center;
    padding: 12px;
    z-index: 999999;
    transition: transform 0.3s ease-in-out;
}

/* Sağ/sol pozisyonlama */
.fake-notification-right {
    right: 20px;
    transform: translateX(120%);
}

.fake-notification-right.show {
    transform: translateX(0);
}

.fake-notification-left {
    left: 20px;
    transform: translateX(-120%);
}

.fake-notification-left.show {
    transform: translateX(0);
}

.fake-notification-icon {
    width: 48px;
    height: 48px;
    margin-right: 12px;
    border-radius: 4px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px;
}

.fake-notification-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.fake-notification-content {
    flex: 1;
}

.fake-notification-text {
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
}

.fake-notification-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobil için responsive tasarım */
@media (max-width: 768px) {
    .fake-notification {
        width: calc(100% - 40px);
        bottom: 10px;
        left: 20px !important;
        right: 20px !important;
    }
} 