body {
    background-color: #f4f6f9;
    font-family: "Segoe UI", sans-serif;
}

/* SIDEBAR */
.sidebar {
    width: 240px;
    min-height: 100vh;
    background-color: #2f4050;
    color: #fff;
}

.sidebar-header {
    padding: 20px;
    font-size: 20px;
    text-align: center;
    background-color: #243343;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

    .sidebar-menu li a {
        display: block;
        padding: 12px 20px;
        color: #ddd;
        text-decoration: none;
        transition: 0.3s;
    }

        .sidebar-menu li a i {
            margin-right: 10px;
        }

        .sidebar-menu li a:hover {
            background-color: #1ab394;
            color: #fff;
        }

/* CONTENT */
#page-content {
    flex: 1;
}

/* TOPBAR */
.topbar {
    height: 60px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 14px;
}

.no-sidebar header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 75px;
    z-index: 1050;
}

    /* Header iç padding */
    .no-sidebar header .container-fluid {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

/* Header sabit olduğu için içerik alta kaydırılır */
.no-sidebar #page-content {
    margin-left: 0 !important;
    width: 100%;
    padding-top: 50px; /* header yüksekliği */
}

/* Ek boşlukları temizle */
.no-sidebar main {
    margin-top: 0 !important;
}
header {
    height: 75px;
}

 header .container-fluid {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

.map-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

    .map-responsive iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

@media (max-width: 768px) {
    button[type="submit"] {
        width: 100%;
    }

    .no-sidebar #page-content {
        padding-top: 60px;
    }
}