/* Bildirim Menu Item */
.fa-notification-menu-item {
    position: relative;
}

.fa-notification-menu-item > a {
    position: relative;
    display: flex;
    align-items: center;
}

.fa-notification-badge-menu {
    position: absolute;
    top: -5px;
    right: -8px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(255, 68, 68, 0.4);
    animation: fa-notification-pulse 2s infinite;
}

@keyframes fa-notification-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 2px 6px rgba(255, 68, 68, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(255, 68, 68, 0.6);
    }
}

.fa-notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 380px;
    max-height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    display: none;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    margin-top: 10px;
    z-index: 9999;
}

.fa-notification-dropdown.show {
    display: block;
    animation: fa-notification-slideDown 0.3s ease;
}

@keyframes fa-notification-slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fa-notification-header {
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.fa-notification-header strong {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fa-mark-all {
    color: white;
    text-decoration: none;
    font-size: 11px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.fa-mark-all:hover {
    opacity: 1;
    text-decoration: underline;
}

.fa-notification-list {
    max-height: 400px;
    overflow-y: auto;
}

.fa-notification-list::-webkit-scrollbar {
    width: 6px;
}

.fa-notification-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.fa-notification-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.fa-notification-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.fa-notification-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.fa-notification-item:hover {
    background: #f8f9fa;
}

.fa-notification-item.unread {
    background: #e3f2fd;
}

.fa-notification-item.unread:hover {
    background: #bbdefb;
}

.fa-notification-icon-type {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.fa-notification-icon-type.pm {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.fa-notification-icon-type.reply {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.fa-notification-icon-type.quote {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.fa-notification-icon-type.mention {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.fa-notification-content {
    flex: 1;
}

.fa-notification-text {
    font-size: 13px;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.4;
}

.fa-notification-text strong {
    color: #667eea;
    font-weight: 600;
}

.fa-notification-time {
    font-size: 11px;
    color: #999;
}

.fa-notification-footer {
    padding: 12px 15px;
    background: #f8f9fa;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.fa-notification-footer a {
    color: #667eea;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
}

.fa-notification-footer a:hover {
    color: #764ba2;
}

.fa-notification-empty {
    padding: 40px 20px;
    text-align: center;
    color: #999;
}

.fa-notification-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.fa-notification-loading {
    padding: 40px 20px;
    text-align: center;
    color: #999;
}

.fa-notification-loading i {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Mobil Uyumluluk */
@media screen and (max-width: 768px) {
    .fa-notification-dropdown {
        width: 320px;
        right: -10px;
    }
}
/* Duyuru Slider için CSS Düzeltmesi */
.announcement-slider {
    overflow: hidden;
    position: relative;
}

.announcement-slider .slide {
    list-style: none;
    margin: 0;
    padding: 0;
}

.announcement-slider .slide li {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.announcement-slider .slide li:first-child {
    display: block;
    opacity: 1;
}

