/* Skyline UPI Modal (Razorpay Style) */
.skyline-payment-modal {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 420px;
    margin: 40px auto;
    padding: 30px 25px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border: 1px solid #f0f0f0;
}

.skyline-payment-modal h3 {
    margin-top: 0;
    color: #111;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 5px;
}

.skyline-payment-modal p {
    color: #555;
    margin-bottom: 20px;
    font-size: 15px;
}

/* QR Code */
.skyline-qr-code {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 10px;
}

.skyline-qr-code img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}


/* App Buttons - Compact Inline (Pill) Layout */
.skyline-upi-apps {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Creates a clean 2x2 grid */
    gap: 12px;
    margin: 20px auto 30px;
    max-width: 280px; /* Kept narrow for compact buttons */
}

.skyline-app-btn {
    display: flex;
    flex-direction: row; /* Places icon and text side-by-side */
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px; /* Smooth, smaller pill shape */
    padding: 10px 15px;
    text-decoration: none !important;
    color: #444 !important;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.skyline-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-color: #d8d8d8;
}

/* Container for the tiny icon */
.skyline-app-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px; /* Space between the tiny icon and the text */
}

.skyline-app-icon img {
    display: block;
    object-fit: contain;
}

/* =========================================================
   TINY 10px SCALING
   Forces all icons down to text-height (~10px) smoothly
   ========================================================= */

.gpay .skyline-app-icon img { 
    width: auto; 
    height: 12px; 
}

.phonepe .skyline-app-icon img { 
    width: auto; 
    height: 14px; /* PhonePe is very wide, 12px keeps it legible */
}

.paytm .skyline-app-icon img { 
    width: auto; 
    height: 32px; /* Paytm logo is thick, making it 8px balances it */
}

.bhim .skyline-app-icon img { 
    width: auto; 
    height: 14px; 
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .skyline-upi-apps { 
        grid-template-columns: 1fr; /* Stacks into a single list on tiny screens */
        max-width: 200px;
    }
    .skyline-app-btn { 
        padding: 8px 12px; 
    }
}


/* Form Elements */
.skyline-utr-form {
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.skyline-utr-form h4 {
    margin: 0 0 15px;
    color: #333;
    font-size: 15px;
}

.skyline-utr-form input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 15px;
    box-sizing: border-box;
}

.skyline-utr-form input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.skyline-utr-form button {
    width: 100%;
    background: #007bff;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
}

.skyline-utr-form button:hover {
    background: #0056b3;
}

/* WhatsApp Confirmation Button */
.skyline-wa-confirmation {
    margin: 30px 0;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid #e1f5e8;
}

.skyline-wa-confirmation h3 { margin-top: 0; color: #111; }
.skyline-wa-confirmation p { color: #555; margin-bottom: 20px; }

.skyline-wa-btn {
    display: inline-block;
    background: #25D366;
    color: #fff !important;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.skyline-wa-btn:hover {
    background: #1ebc5a;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 480px) {
    .skyline-upi-apps { grid-template-columns: 1fr; }
}