/* Header/menü: css/site-shell.css (#app-nav) — sayfa CSS tekrar etmez */

body {
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    margin-top: 12px;
    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;
}



