.alert-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px;
}

.alert-box {
    border: 1px solid #cc0000;
    background: #ffe5e5;
    padding: 12px 16px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}


/* Main wiki-like grid */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    margin: 20px;
}

.section-box {
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 12px;
    padding: 16px;
    font-family: Arial, sans-serif;
}


.section-box h2 {
    color: #cc0000;
    margin-bottom: 10px;
}


/* Mobile */
@media (max-width: 1200px) {
    .main-grid {
        grid-template-columns: 1fr;
    }
    .friends-requests {
        height: auto; /* otomatik yüksekliğe izin ver */
        min-height: 300px; /* minimum bir yükseklik ver */
    }
    .section-box.friends-requests { order: 1; }
    .section-box:nth-child(2) { order: 2; } /* Featured Content */
    .section-box:nth-child(3) { order: 3; } /* News from rumilabs */
    .section-box:nth-child(6) { order: 4; } /* What is developing */
    .section-box:nth-child(4) { order: 5; } /* Statistics */
    .section-box:nth-child(5) { order: 6; } /* News from rumiakademi */
}

.check-marda-button {
    display: inline-block;
    padding: 12px 28px;
    background: #cc0000;
    color: #ffffff;
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 16px;
    border-radius: 10px;
    border: 2px solid #990000;
    text-decoration: none;
    transition: 0.25s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.check-marda-button:hover {
    background: #ffffff;
    color: #cc0000;
    border-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.check-marda-button:active {
    transform: scale(0.97);
}

.friends-requests {
    display: flex;
    flex-direction: column;
    
}
.friends-section {
    flex: 1;
    overflow-y: auto;
}
.requests-section {
    flex: 1;
    overflow-y: auto;
}
.friends-section,
.requests-section {
    overflow: hidden;
}
.friend-item {
    display: inline-block;
    color: red;
    margin-right: 4px;
}
.friend-item:hover {
    text-decoration: underline;
}

/* Friends & Requests kutusu genel düzen */
.section-box.friends-requests {
    position: relative;
    user-select: none;
}

/* Kullanıcı adı kutucuğu */
.friends-list p,
.requests-list p {
    display: inline-block;
    margin: 4px 6px;
    padding: 4px 8px;
    color: #cc0000;
    font-weight: 500;
    border-radius: 6px;
    transition: 0.2s ease;
}

/* Hover efekti: hafif büyüme + alt çizgi */
.friends-list p:hover,
.requests-list p:hover {
    text-decoration: underline;
}

/* Kullanıcı adlarının içte yan yana düzgün sıralanması */
.friends-list,
.requests-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Kullanıcı adları */
.friend-item {
    color: #a00000;          /* daha koyu kırmızı */
    transition: 0.2s ease;
}

.friend-item:hover {
    text-decoration: underline;
}

/* No items sade, tıklanamaz, animasyon yok */
.empty-message {
    color: #444;
    font-weight: 500;
    margin: 4px 0;
    padding: 0;
    cursor: none !important;
    text-decoration: none !important;
    transform: none !important;
    transition: none !important;
}


/* See More butonu */
.see-more-btn {
    margin-top: 30px;
    padding: 7px 14px;
    background: #cc0000;
    color: white;
    border-radius: 10px;
    border: 2px solid #990000;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

/* Hover animasyonu */
.see-more-btn:hover {
    background: #ffffff;
    color: #cc0000;
    border-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Basılma animasyonu */
.see-more-btn:active {
    transform: translateY(0);
}

