.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-logo {
    height: 40px;
}

.navbar-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.main-container {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.content {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    transition: margin-left 0.3s ease;
}

@media (max-width: 768px) {
    flex: 1;
    padding: 0rem;
    overflow-y: auto;
    transition: margin-left 0.3s ease;
    
}

.content.nav-open {
    margin-left: 250px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Login ve Register sayfaları için özel stiller */


.login-box, .register-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mt-auto {
    margin-top: auto !important;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.rz-message-popup {
    margin-left: -140px;
    z-index: 1001!important;
}