.sanal-pos-odeme-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.sanal-pos-odeme-form {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sanal-pos-odeme-form h3 {
    margin: 0 0 25px 0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.spo-amount-section {
    margin-bottom: 25px;
}

.spo-amount-section label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.spo-amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.spo-amount-input {
    width: 100%;
    padding: 15px 60px 15px 15px;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.spo-amount-input:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

.spo-currency {
    position: absolute;
    right: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #666;
}

.spo-tax-breakdown {
    margin-top: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #2271b1;
}

.spo-tax-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.spo-tax-line:last-child {
    margin-bottom: 0;
}

.spo-tax-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.spo-tax-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

.spo-tax-line .spo-currency {
    position: static;
    font-size: 14px;
    color: #666;
}

.spo-payment-methods {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spo-payment-methods label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.spo-payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.spo-payment-method {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
}

.spo-payment-method:hover {
    border-color: #2271b1;
    background-color: #f8f9fa;
}

.spo-payment-method input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #2271b1;
}

.spo-payment-method input[type="radio"]:checked + .spo-payment-method-content {
    font-weight: 600;
}

.spo-payment-method input[type="radio"]:checked {
    border-color: #2271b1;
}

.spo-payment-method-content {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
    flex: 1;
}

.spo-payment-icon {
    display: inline-block;
    margin-bottom: 5px;
}

.spo-payment-icon img {
    max-height: 30px;
    width: auto;
}

.spo-payment-name {
    font-size: 16px;
    color: #333;
    margin-bottom: 3px;
}

.spo-payment-description {
    font-size: 13px;
    color: #666;
    font-weight: normal;
}

.spo-submit-button {
    width: 100%;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #2271b1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spo-submit-button:hover {
    background-color: #135e96;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
}

.spo-submit-button:active {
    transform: translateY(0);
}

.spo-submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.spo-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    color: #666;
    font-size: 14px;
}

.spo-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2271b1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spo-error {
    padding: 12px;
    margin-top: 15px;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    border-radius: 6px;
    color: #842029;
    font-size: 14px;
}

@media (max-width: 768px) {
    .sanal-pos-odeme-form {
        padding: 20px;
    }

    .spo-amount-input {
        font-size: 16px;
        padding: 12px 50px 12px 12px;
    }

    .spo-currency {
        font-size: 16px;
    }

    .spo-submit-button {
        font-size: 16px;
        padding: 12px 24px;
    }
}
