/**
 * Akbank POS Styles
 */

.akbank-installment-options {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e1e8ed;
}

.akbank-installment-options label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.akbank-installment-options select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
}

.akbank-installment-options select:focus {
    outline: none;
    border-color: #e60012;
    box-shadow: 0 0 0 1px #e60012;
}

/* Ödeme formu */
#akbank-payment-form {
    text-align: center;
    padding: 20px;
}

#akbank-payment-form input[type="submit"] {
    background-color: #e60012;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#akbank-payment-form input[type="submit"]:hover {
    background-color: #c00010;
}

/* Admin ayarlar */
.wc-akbank-pos-admin-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e60012;
}

/* Order meta bilgileri */
.akbank-order-meta {
    margin: 10px 0;
    padding: 10px;
    background: #f9f9f9;
    border-left: 4px solid #e60012;
}

.akbank-order-meta strong {
    display: inline-block;
    min-width: 150px;
}

