body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Navbar container and layout */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.navbar-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

/* Logo styling */
.navbar-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text-red {
    color: #e53935; /* Kırmızı tonu */
}

.logo-text-blue {
    color: #1e88e5; /* Mavi tonu */
    margin-left: 6px;
    font-weight: 600; /* Biraz daha ince olabilir topluluk yazısı */
}

/* Main Content Padding for fixed navbar */
.content {
    margin-top: 80px;
    padding: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
