@import url('https://fonts.googleapis.com/css2?family=Varela&display=swap');
body {
    background: #f7f7f7;
    font-family: 'Varela', sans-serif;
    margin: 0;
    padding: 0;
}
hr {
    border: none;
    height: 1px;
    background-color: #f1f2f2;
    width: 100%;
}
.container {
    margin: 0 auto;
    padding: 0 0 32px 0;
}
.header {
    background: #2196f3;
    color: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    font-size: 1.3em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.back-arrow {
    font-size: 1.5em;
    margin-right: 12px;
    cursor: pointer;
    margin-top: -10px;
}
.title {
    font-weight: 500;
}
.summary-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    margin: 24px 0 24px 0;
    padding: 18px 20px 10px 20px;
}
.summary-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 12px;
    font-size: 1.1em;
    gap: 0;
}
.summary-row .dot {
    width: 10px;
    height: 6px;
    background: #2196f3;
    border-radius: 3px;
    display: inline-block;
    margin-right: 16px;
    flex-shrink: 0;
}
.summary-row span:nth-child(2) {
    min-width: 160px;
    text-align: left;
    margin-right: 0;
    font-weight: 400;
    color: #111;
}
.summary-row .amount {
    margin-left: auto;
    font-weight: 600;
    color: #222;
    font-size: 1.13em;
}
.summary-row.total span:nth-child(2),
.summary-row.total .amount.total {
    font-weight: 400;
}
.green{
    color: #43a047 !important;
    font-weight: 600 !important;
}
.summary-row.total .amount.total {
    font-size: 1.13em;
}
.payment-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.label {
    font-size: 0.9em;
    color: #6b7280;
    margin-top: 10px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.label .icon {
    margin-right: 7px;
    font-size: 1.2em;
}
.label .fa-credit-card,
.label .fa-envelope,
.label .fa-phone {
    color: #ffc107;
}
.label .icon.aa-icon {
    color: #6b7280;
    font-weight: bold;
    font-size: 1.2em;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin-right: 7px;
    letter-spacing: -1px;
    display: inline-block;
    width: 1.5em;
    text-align: center;
}
.input {
    background: #e3f2fd;
    border: none;
    border-radius: 10px;
    padding: 18px 14px;
    font-size: 0.9em;
    margin-bottom: 2px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    color: #222;
}
select.input {
    width: 98%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #e3f2fd;
    background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px 20px;
    cursor: pointer;
    font-family: 'Varela', sans-serif;
}
select option {
    background-color: #fff;
}
.proceed-btn {
    margin-top: 22px;
    background: #2196f3;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 14px 32px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(33,150,243,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}
.proceed-btn:hover {
    background: #1976d2;
}
.proceed-btn .greater-than {
    margin-left: 10px;
    font-size: 1.3em;
}
#payaForm{
    margin-left: -17px !important;
}
.custom-alert-danger {
    padding: 15px;
    border: 1px solid #f5c2c7;
    border-radius: 4px;
    background-color: #f8d7da;
    color: #842029;
    font-weight: 500;
}
@media (max-width: 767px) {
    .container {
        max-width: 100vw;
        padding-bottom: 32px;
    }
    .summary-card {
        padding: 16px;
        margin: 16px;
    }
    .payment-form {
        margin: 16px;
    }
}
@media (min-width: 768px) and (max-width: 1280px) {
    .container {
        max-width: 100vw;
        padding-bottom: 32px;
    }
    .summary-card {
        padding: 32px;
        margin: 32px;
    }
    .payment-form {
        margin: 32px;
    }
}