﻿/* Payment Gateway Styles */

body {
    background-color: #f8f8f8;
    font-family: 'Poppins', sans-serif;
    color: #222;
}

h2, h5, h6 {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.card {
    border: none;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.card-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.form-label {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    font-size: 0.9rem;
}

.btn {
    border-radius: 0;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary, .btn-success {
    background-color: #111;
    border-color: #111;
    color: #fff;
}

    .btn-primary:hover, .btn-success:hover {
        background-color: #c6a664;
        border-color: #c6a664;
        color: #fff;
    }

.btn-outline-secondary {
    border-color: #ddd;
    color: #222;
}

    .btn-outline-secondary:hover {
        background-color: #f4f4f4;
    }

.btn-outline-primary {
    border-color: #111;
    color: #111;
}

    .btn-outline-primary:hover {
        background-color: #111;
        color: #fff;
    }

.alert {
    border-radius: 0;
    border: none;
    font-size: 0.9rem;
}

.alert-success {
    background-color: #f5f3e6;
    color: #6b5e3e;
}

.alert-danger {
    background-color: #fbeaea;
    color: #7c1d1d;
}

.alert-info {
    background-color: #f6f6f6;
    color: #333;
}

.badge {
    border-radius: 0;
    font-weight: 500;
}

.bg-warning {
    background-color: #e7d9a9 !important;
    color: #111;
}

.bg-success {
    background-color: #c6a664 !important;
}

.bg-danger {
    background-color: #d95c5c !important;
}

.icon-circle {
    background: #f0f0f0;
    border-radius: 50%;
    padding: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.text-muted {
    color: #777 !important;
}

.section-divider {
    border-top: 1px solid #eee;
    margin: 2rem 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: none;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    border-radius: 8px 8px 0 0;
}

.modal-body {
    padding: 30px 20px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 20px;
}

    .close:hover,
    .close:focus {
        color: #000;
    }

#paypal-button-container {
    margin-top: 20px;
    min-height: 150px;
}

.payment-summary {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 3px solid #c6a664;
}

    .payment-summary p {
        margin: 5px 0;
        font-size: 0.95rem;
    }

    .payment-summary strong {
        color: #111;
        font-weight: 600;
    }

/* Select2 Custom Styles */
.select2-container--default .select2-selection--single {
    border: 1px solid #ddd;
    border-radius: 0;
    height: auto;
    line-height: 32px;
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 35px;
        font-size: 12px;
        color: #333;
        padding-left: 12px;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 32px;
    }

    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        color: #999;
        font-size: 12px;
    }

.select2-dropdown {
    border: 1px solid #ddd;
    border-radius: 0;
}

.select2-container--default .select2-results__option {
    font-size: 12px;
    padding: 6px 12px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #c6a664;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 12px;
}
