
        /* Custom Header ve Menü */
    .custom-header {
        width: 100%;
        background-color: #283458;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        color: white;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .custom-menu-toggle {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .custom-menu-toggle i {
        font-size: 24px;
        margin-right: 8px;
    }

    .custom-menu-toggle span {
        font-size: 18px;
    }

    .custom-home-icon {
        font-size: 24px;
    }

    /* Sağdan kayan menü */
.custom-menu {
    position: fixed;
    top: 0; /* En üstten başlasın */
    right: -100%;
    height: 100%;
    width: 80%;
    max-width: 250px;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 9999; /* En yüksek z-index */
    transition: right 0.4s ease;
}

    .custom-menu.open {
        right: 0; /* Menü açılınca ekrana gelir */
    }

    .custom-menu a {
        display: block;
        padding: 15px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #ddd;
        font-size: 28px;
    }

    .custom-menu a:hover {
        background-color: #f4f4f4;
    }

.custom-close-btn {
    background-color: #ff5e5e;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    display: block;
}

.custom-close-btn:hover {
    background-color: #ff4b4b;
}

.custom-menu.open {
    display: block;
}

        /* Mobil görünüm */
        @media (max-width: 768px) {
            .custom-header {
                padding: 8px 10px;
            }

            .custom-home-icon i {
                font-size: 24px;
            }

            .custom-home-icon1 i {
                font-size: 34px; /* İkonun boyutunu ayarlayın */
                color: white; /* İkonun rengini ayarlayın */
            }


            .custom-menu-toggle i {
                font-size: 28px;
            }

            .custom-menu-toggle span {
                font-size: 28px;
            }

            /*    .custom-menu {
                top: 45px;
                width: 100%;
            }
                */


            .custom-menu a {
                font-size: 18px;
                padding: 8px;
            }
        }


body {
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    margin-top: 100px;
    max-width: 700px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.custom-title {
    color: #5fbd0f; /* Başlık rengi */
    font-size: 25px; /* Başlık boyutu */
    font-weight: bold; /* Kalın başlık */
}

.custom-form .form-group label {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.custom-form .form-control {
    height: 45px;
    font-size: 18px;
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease;
}

.custom-form .form-control:focus {
    border-color: #ff7f00;
    outline: none;
}
.btn-custom {
    width: 100%;
    padding: 12px;
    background-color: #ff7f00;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-custom:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.order-summary {
    margin-top: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.order-title {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
    color: #007bff;
}

.order-summary p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #555;
}

.product-image {
    max-width: 100px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 15px auto 0;
}

.order-status {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: #e7f3fe;
    color: #007bff;
}

@media (max-width: 768px) {
    .order-title {
        font-size: 28px;
    }

    .btn-custom {
        font-size: 18px;
        padding: 10px;
    }

    .order-summary p {
        font-size: 16px;
    }

    .order-status {
        font-size: 20px;
    }

    .product-image {
        max-width: 80px;
    }
}
.form-control {
    height: 45px;
    font-size: 18px;
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

.form-control:focus {
    border-color: #007bff; /* Odaklanıldığında mavi renk */
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.2); /* Odaklanıldığında daha belirgin gölge */
    outline: none;
}



