body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; 
    line-height: 1.6; 
    color: #333; 
    background-color: #f4f4f4; 
    margin: 0; 
    padding: 0; 
}

.container { 
    max-width: 1100px; 
    margin: 20px auto; 
    background: #fff; 
    box-shadow: 0 0 10px rgba(0,0,0,0.1); 
}

.site-header { 
    background: #333; 
    padding: 20px; 
    text-align: center; 
}

.site-header h1 { 
    color: #ff0 !important; /* Kesinlikle sarı olacak */ 
    margin: 0;
}

.site-header h1 a { 
    color: #ff0 !important; /* Kesinlikle sarı olacak */ 
    text-decoration: none; 
}

.site-header p { 
    margin: 0; 
    color: #ff0; /* Başlık altındaki açıklama sarı olsun istersen */ 
}

.content-area { 
    display: flex; 
}

.side-menu { 
    width: 25%; 
    padding: 20px; 
    background: #ffd700; 
    border-right: 1px solid #ddd;
}

.side-menu h3 { 
    margin-top: 0; 
}

.side-menu ul { 
    list-style: none; 
    padding: 0; 
}

.side-menu ul li a { 
    display: block; 
    padding: 8px 0; 
    color: #333; 
    text-decoration: none; 
    border-bottom: 1px solid #eee; 
}

.side-menu ul li a:hover { 
    color: #000; 
    font-weight: bold; 
}

.main-content { 
    width: 75%; 
    padding: 20px; 
}

.post-list { 
    list-style: none; 
    padding: 0; 
}

.post-list li { 
    padding: 10px; 
    border-bottom: 1px dotted #ccc; 
    font-size: 1.1em; 
}

.site-footer { 
    text-align: center; 
    padding: 20px; 
    background: #333; 
    color: #fff; 
    margin-top: 20px; 
}

.admin-container { 
    padding: 20px; 
}

.admin-table { 
    width: 100%; 
    border-collapse: collapse; 
    margin-top: 20px; 
}

.admin-table th, .admin-table td { 
    border: 1px solid #ddd; 
    padding: 8px; 
    text-align: left; 
}

.admin-table th { 
    background-color: #f2f2f2; 
}

.admin-actions a { 
    margin-right: 10px; 
    text-decoration: none; 
}

.btn { 
    display: inline-block; 
    padding: 10px 15px; 
    background: #333; 
    color: #fff; 
    text-decoration: none; 
    border-radius: 4px; 
    margin-top: 10px; 
}

.form-group { 
    margin-bottom: 15px; 
}

.form-group label { 
    display: block; 
    margin-bottom: 5px; 
}

.form-group input, .form-group select, .form-group textarea { 
    width: 100%; 
    padding: 8px; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
    box-sizing: border-box; 
}

.login-container { 
    max-width: 400px; 
    margin: 100px auto; 
    padding: 20px; 
    background: #fff; 
    border: 1px solid #ddd; 
    box-shadow: 0 0 10px rgba(0,0,0,0.1); 
}

@media (max-width: 768px) {
    .content-area {
        flex-direction: column;
    }
    .side-menu, .main-content {
        width: 100%;
        border-right: none;
    }
    .site-header h1, .site-title {
        font-size: 1.5em;
    }
    .main-content {
        order: 1;
    }
    .side-menu {
        order: 2;
    }
}
.site-title a {
    color: #ff0 !important;      /* Sarı olsun */
    font-size: 2em;              /* İstediğin büyüklük */
    font-weight: bold;           /* Kalın yazı */
    text-decoration: none;       /* Alt çizgi olmasın */
}
.footer-links a {
    color: #ff0 !important;       /* Sarı renk */
    text-decoration: none !important;
    margin: 0 10px;                /* Linkler arasında boşluk */
    position: relative;
}

.footer-links a:not(:last-child)::after {
    content: "|";                  /* Ayracı ekle */
    color: #fff;                   /* Ayracın rengi */
    margin-left: 10px;             /* Ayracın linkten uzaklığı */
}
/* ===== SAYFALAMA STİLLERİ ===== */
.pagination {
    margin-top: 30px;
    text-align: center;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 18px; /* İç boşluğu biraz artırdık */
    margin: 0 6px;   /* Dış boşluğu biraz artırdık */
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1em;  /* Yazı boyutunu büyüttük */
}

.pagination a:hover {
    background-color: #f4f4f4;
}

.pagination .active {
    background-color: #000000;
    color: #FFFF00;
    border-color: #000000;
}