﻿.body-content {
    min-height: calc(100vh - 150px);
}
/* Loader Stili */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.rotating-loader {
    width: 80px;
    height: 80px;
    animation: rotate-animation 1.5s linear infinite;
}

@keyframes rotate-animation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hamburger Menü Stili */
.navbar-toggler {
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1050;
    display: none;
}

.navbar-toggler-icon {
    width: 30px;
    height: 3px;
    background-color: black;
    display: block;
    position: relative;
    transition: all 0.3s ease-in-out;
    top: 15px;
}

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        width: 30px;
        height: 3px;
        background-color: black;
        position: absolute;
        left: 0;
        transition: all 0.3s ease-in-out;
    }

    .navbar-toggler-icon::before {
        top: -8px;
    }

    .navbar-toggler-icon::after {
        top: 8px;
    }

.button-group {
    display: inline-flex;
    justify-content: space-between;
    gap: 10px;
    width: max-content;
}

    .btn.black {
        min-width: fit-content;
        padding: 13px 25px;
        background: #2C2D3F;
        color: #fff !important;
    }

        .btn.black:before {
            min-width: fit-content;
            padding: 13px 25px;
            background: #1A76D1;
            color: #fff !important;
        }

    .signature-status {
        max-height: 75px;
        max-width: 75px;
    }

    .status-mobile {
        display: none;
    }

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -250px; /* Başlangıçta ekran dışında */
    width: 250px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1040;
    padding-top: 60px;
}

    .mobile-menu.show {
        right: 0; /* Açıldığında ekran içine girsin */
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
    }

        .mobile-menu ul li {
            padding: 0;
            border-bottom: 1px solid #ddd;
        }

            .mobile-menu ul li a {
                text-decoration: none;
                color: black;
                font-weight: bold;
                display: block;
            }

@media (max-width: 768px) {
    .status-mobile {
        display: inline-flex;
    }

    .body-content {
        min-height: 100vh;
    }

    .header .nav li:last-child {
        margin-top: 30px !important;
        display: flex;
        justify-content: center;
        border-bottom: none;
    }

    .navbar-toggler {
        display: flex;
    }

    .header-button-area{
        display:none;
    }
}