﻿/* Form Paneli */
.order-panel {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #ddd;
}

.order-form-title-text {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}
/* Radio Buttonların Modern Stili */
.custom-radio-buttons {
    margin-bottom: 10px;
}

    .custom-radio-buttons table {
        border-collapse: collapse;
        border: none; /* Tablonun kenarlığını kaldırır */
        width: 100%; /* Genişliği tamamen kapsaması için */
        
    }

    /* Sadece custom-radio-buttons içindeki tablo satır ve hücrelerini etkiler */
    .custom-radio-buttons tr, .custom-radio-buttons td {
        border: none; /* Satır ve hücre kenarlıklarını kaldırır */
        padding: 0; /* Hücre içindeki gereksiz boşlukları kaldırır */
        width: 100%; /* Hücre genişliği tamamen kapsasın */
       
    }

    .custom-radio-buttons label {
        margin-bottom: 7px;
       
        font-size: 14px;
        font-weight: normal;
        display: flex;
        align-items: center;
        padding: 10px 10px 10px 25px;
        background-color: #fff;
        cursor: pointer;
        justify-content: flex-start;
        transition: background-color 0.3s ease;
        border: 1px solid #ddd;
        width: 100%; /* Label tam genişlikte olacak */
        box-sizing: border-box; /* Padding genişliği etkilemesin */
    }

    .custom-radio-buttons input[type="radio"] {
        position: absolute;
        margin-top: 15px;
        margin-left: 7px;
        box-shadow: none;
        outline: none;
    }

        /* Hover ve checked durumlarında değişiklikler */
        .custom-radio-buttons input[type="radio"] + span {
            display: flex;
            align-items: center;
            transition: 0.25s ease;
            padding-left: 5px;
        }

            .custom-radio-buttons input[type="radio"] + span:before {
                content: '';
                display: inline-block;
                width: 1.5em;
                height: 1.5em;
                border-radius: 50%;
                margin-right: 10px;
                background-color: #fff;
                box-shadow: inset 0 0 0 0.125em #00005c;
                transition: 0.25s ease;
            }

        .custom-radio-buttons input[type="radio"]:checked + span:before {
            box-shadow: inset 0 0 0 0.4375em #00005c;
        }

    /* Hover efekti */
    .custom-radio-buttons label:hover {
        background-color: #eaeaea;
    }

/* Mobil cihazlar için düzenleme */
@media (max-width: 768px) {
    .custom-radio-buttons label {
        font-size: 14px;
    }

    .custom-radio-buttons input[type="radio"] {
        transform: scale(1);
    }
}
/* Giriş Alanları */
.custom-input-group {
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.custom-input-field {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #fff;
}

.custom-address-field {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 80px;
    resize: none;
    box-sizing: border-box;
}

/* Sözleşme Alanı */
.order-agreement.custom-agreement {
    font-size: 12px;
    margin-top: 15px;
}

.order-agreement a {
    color: #214ad0;
    text-decoration: underline;
}

/* Siparişi Tamamla Butonu */
.order-submit-button {
    background-color: #0066CC;
    color: #fff;
    font-size: 18px;
    padding: 15px;
    text-align: center;
    border: none;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .order-submit-button:hover {
        background-color: #005bb5;
    }

/* Mobil Cihazlar İçin */
@media (max-width: 768px) {
    .order-panel {
        padding: 15px;
    }

    .order-form-title-text {
        font-size: 18px;
    }

    .custom-input-field, .custom-address-field {
        font-size: 14px;
    }

    .order-submit-button {
        font-size: 16px;
        padding: 12px;
    }
}

.hemensiph2 {
    color: #fff;
    background-color: #DC3545;
}