@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Varela+Round&display=swap");

* {
    font-family: poppins, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: rgb(249, 231, 159) !important;
    overflow-x: hidden;
    font-family: sans-serif;
    font-weight: 700;
}

/* Logo & Header */
.logo {
    border: 3px solid #ffbf82;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.top1 {
    background-color: #ffbf82;
    color: #010101;
    font-weight: 700;
    font-size: large;
    font-style: italic;
    padding: 5px;
    text-shadow: 0 0 #8bc34a;
}

.descriptionCont {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-title {
    font-size: 22px;
    margin: 0;
    text-align: center;
}

.title-magic {
    color: #ff2151;
    text-decoration: none;
}

.title-panel {
    color: #000000;
    text-decoration: none;
}

.subtitle {
    font-size: 15px;
    color: #e63232;
    margin: 0;
    text-align: center;
}

/* Top Description */
#top {
    font-weight: normal;
    font-size: small;
    padding: 10px 30px;
    color: #002c7f;
}

/* Buttons */
.button-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.button2 {
    background-color: #a0d5ff;
    color: #220c82;
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 10px;
    border: 2px solid #0000005c;
    font-weight: 800;
    text-shadow: 1px 1px #00bcd4;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 8px 0 rgba(0, 0, 0, 0.19);
    display: inline-block;
    transition: all 0.3s;
    text-decoration: none;
}

.button2:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 12px 0 rgba(0, 0, 0, 0.3);
}

/* Panel & Table */
.container-fluid {
    padding: 0 15px;
}

.panel.panel-info {
    border: 1px solid #3f51b5;
    border-radius: 5px;
    width: 70%;
    margin: 0 auto 20px;
    background-color: white;
}

.panel-heading {
    background: #FF00FF;
    text-align: center;
}

.panel-heading h2 {
    font-size: 22px;
    color: #000000;
    text-shadow: 0 0;
    margin: 0px;
}

.panel-body {
    padding: 0;
}

table.panel-chart {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
    table-layout: fixed;
}

table.panel-chart,
table.panel-chart th,
table.panel-chart td {
    border: 1px solid #03a9f4a8;
}

table.panel-chart thead {
    background-color: #ffc107;
    text-shadow: 1px 1px 2px #9a7400ab;
}

table.panel-chart thead th {
    padding: 2px;
    font-weight: 700;
}

table.panel-chart tbody td {
    padding: 5px 0;
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 40px;
    height: 40px;
    vertical-align: middle;
}

table.panel-chart tbody td p {
    margin: 0;
    line-height: 1.4;
}

/* Ensure all cells have equal width */
table.panel-chart tbody td:not(:first-child) {
    width: 5%;
    min-width: 35px;
}

/* Date column specific width */
table.panel-chart tbody td:first-child {
    width: 80px;
    min-width: 80px;
}

/* Add minimum content to empty cells to maintain size */
table.panel-chart tbody td:empty::before {
    content: '\00a0';
    visibility: hidden;
}

/* Color Classes */
.normal {
    color: #000;
}

.red {
    color: red;
}

/* Table Column Styling */
table.panel-chart tr td:nth-child(1) {
    font-size: 13px;
    width: 80px;
    min-width: 80px;
}

/* First column of each day (left numbers) */
table.panel-chart tbody tr td:nth-child(2),
table.panel-chart tbody tr td:nth-child(5),
table.panel-chart tbody tr td:nth-child(8),
table.panel-chart tbody tr td:nth-child(11),
table.panel-chart tbody tr td:nth-child(14),
table.panel-chart tbody tr td:nth-child(17) {
    border-right-width: 0;
    font-size: 13px;
    width: 5%;
    min-width: 35px;
}

/* Middle column of each day (main number) */
table.panel-chart tbody tr td:nth-child(3),
table.panel-chart tbody tr td:nth-child(6),
table.panel-chart tbody tr td:nth-child(9),
table.panel-chart tbody tr td:nth-child(12),
table.panel-chart tbody tr td:nth-child(15),
table.panel-chart tbody tr td:nth-child(18) {
    border-left-width: 0;
    border-right-width: 0;
    font-size: 23px;
    font-weight: 700;
    width: 5%;
    min-width: 35px;
}

/* Last column of each day (right numbers) */
table.panel-chart tbody tr td:nth-child(4),
table.panel-chart tbody tr td:nth-child(7),
table.panel-chart tbody tr td:nth-child(10),
table.panel-chart tbody tr td:nth-child(13),
table.panel-chart tbody tr td:nth-child(16),
table.panel-chart tbody tr td:nth-child(19) {
    border-left-width: 0;
    font-size: 13px;
    width: 5%;
    min-width: 35px;
}

table.panel-chart thead tr th:nth-child(1) {
    width: 80px;
    min-width: 80px;
}

/* Equal width for all day columns */
table.panel-chart thead tr th:not(:first-child) {
    width: 15%;
}

/* Lock Icon */
.lock_icon {
    text-decoration: none;
    font-size: 20px;
    display: inline-block;
}

/* Unlock Section */
.unlock-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0;
    position: relative;
    z-index: 2;
}

.unlock-btn {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    background-color: rgb(15, 161, 7);
    border: none;
    border-radius: 11px;
    padding: 12px 32px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.unlock-btn:hover {
    background-color: rgb(29, 30, 32);
    color: #fff;
    cursor: pointer;
}

/* Bottom Section */
#bottom {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Footer */
.satta-matka-block {
    background-color: #5c748a;
    border-radius: 5px;
    font-size: 19px;
    padding: 10px;
    text-align: center;
    border: white solid 2px;
    font-style: italic;
    font-weight: 700;
    margin: 20px 15px;
}

.satta-matka-block a {
    text-decoration: none;
    color: #000;
    display: block;
    margin: 5px 0;
}

.btn-red {
    color: white;
    font-weight: 700;
}

.btn-red a {
    color: white;
}

/* Fixed Buttons */
.fixed-refresh {
    background-color: green;
    color: white;
    border: 1px inset white;
    font-weight: bold;
    font-style: italic;
    font-size: 15px;
    border-radius: 8px;
    padding: 5px 15px;
    box-shadow: 0 0 5px #000000d6;
    cursor: pointer;
    position: fixed;
    right: 6px;
    bottom: 20px;
    z-index: 999999;
}

.fixed-refresh:hover {
    background-color: darkgreen;
}

/* Market Dropdown Styles */
.market_dropdown_container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
    padding: 0 15px;
}

.market-dropdown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #a0d5ff;
    color: #220c82;
    padding: 12px 40px 12px 20px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    border: 2px solid #0000005c;
    text-shadow: 1px 1px #00bcd4;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 8px 0 rgba(0, 0, 0, 0.19);
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
    min-width: 250px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23220c82' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.market-dropdown:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 12px 0 rgba(0, 0, 0, 0.3);
    background-color: #90c5ef;
}

.market-dropdown:focus {
    border-color: #3f51b5;
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.2), 0 8px 10px 0 rgba(0, 0, 0, 0.2);
}

.market-dropdown option {
    background-color: white;
    color: #220c82;
    padding: 10px;
    font-weight: 600;
}

.market-dropdown option:hover {
    background-color: #a0d5ff;
}

/* Payment Page Styles */
.payment-container {
    background: linear-gradient(135deg, #ffffff 0%, #fff9e6 100%);
    border: 3px solid #ffbf82;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin: 20px auto;
    position: relative;
}

.payment-title {
    color: #220c82;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 188, 212, 0.3);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #FF00FF;
}

/* Amount Display */
.amount-container {
    background: linear-gradient(135deg, #a0d5ff 0%, #90c5ef 100%);
    border: 2px solid #0000005c;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2);
}

.amount-label {
    color: #220c82;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.amount-value {
    color: #ff2151;
    font-size: 42px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
}

/* QR Code Styling */
.qr-code {
    width: 250px;
    height: auto;
    padding: 15px;
    background: white;
    border: 3px solid #3f51b5;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    margin: 25px auto;
    display: block;
    transition: transform 0.3s ease;
}

.qr-code:hover {
    transform: scale(1.05);
}

/* UPI Container */
.upi-container {
    background-color: #ffc107;
    border: 2px solid #0000005c;
    border-radius: 10px;
    padding: 15px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.upi-id {
    flex: 1;
    background-color: white;
    border: 2px solid #03a9f4a8;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #220c82;
    font-family: 'Courier New', monospace;
    text-align: center;
}

.upi-id:focus {
    outline: none;
    border-color: #3f51b5;
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.2);
}

/* Copy Button */
.copy-btn {
    background-color: rgb(15, 161, 7);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy-btn:hover {
    background-color: rgb(12, 130, 5);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.copy-btn:active {
    transform: translateY(0);
}

/* Copy Success Message */
.copy-success {
    display: none;
    background-color: #4caf50;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 15px 0;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease-out;
}

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

/* Payment Done Button */
.payment-done-btn {
    display: none;
    background: linear-gradient(135deg, #FF00FF 0%, #ff2151 100%);
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 12px;
    border: 2px solid #0000005c;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 15px rgba(255, 0, 255, 0.4);
    transition: all 0.3s ease;
    margin: 25px auto 10px;
    text-align: center;
}

.payment-done-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(255, 0, 255, 0.5);
    color: white;
    text-decoration: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Instruction Text */
.payment-instruction {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    color: #002c7f;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.payment-instruction ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.payment-instruction li {
    margin: 5px 0;
}

/* Loading Animation for QR Code */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(63, 81, 181, 0.4);
    }
}

.qr-code {
    animation: pulse 2s ease-in-out infinite;
}

/* Additional Decorative Elements */
.payment-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #FF00FF, #ffbf82, #a0d5ff, #ffc107);
    border-radius: 18px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

/* Responsive Design - Tablet */
@media only screen and (max-width: 770px) {
    .panel.panel-info {
        width: 99%;
    }

    table.panel-chart tr td:nth-child(1) {
        font-size: 9px;
    }

    table.panel-chart tbody tr td:nth-child(3),
    table.panel-chart tbody tr td:nth-child(6),
    table.panel-chart tbody tr td:nth-child(9),
    table.panel-chart tbody tr td:nth-child(12),
    table.panel-chart tbody tr td:nth-child(15),
    table.panel-chart tbody tr td:nth-child(18) {
        font-size: 16px;
    }

    table.panel-chart tbody tr td:nth-child(2),
    table.panel-chart tbody tr td:nth-child(5),
    table.panel-chart tbody tr td:nth-child(8),
    table.panel-chart tbody tr td:nth-child(11),
    table.panel-chart tbody tr td:nth-child(14),
    table.panel-chart tbody tr td:nth-child(17),
    table.panel-chart tbody tr td:nth-child(4),
    table.panel-chart tbody tr td:nth-child(7),
    table.panel-chart tbody tr td:nth-child(10),
    table.panel-chart tbody tr td:nth-child(13),
    table.panel-chart tbody tr td:nth-child(16),
    table.panel-chart tbody tr td:nth-child(19) {
        font-size: 11px;
    }

    table.panel-chart thead tr th:nth-child(1) {
        width: 55px;
    }

    .market-dropdown {
        min-width: 200px;
        font-size: 15px;
        padding: 10px 35px 10px 18px;
    }

    .payment-container {
        padding: 25px 20px;
    }

    .payment-title {
        font-size: 24px;
    }

    .amount-value {
        font-size: 36px;
    }

    .qr-code {
        width: 220px;
    }

    .upi-container {
        flex-direction: column;
    }

    .upi-id {
        width: 100%;
        margin-bottom: 10px;
    }

    .copy-btn {
        width: 100%;
    }
}

/* Thank You Page Styles */
.thank-you-container {
    background: linear-gradient(135deg, #ffffff 0%, #fff9e6 100%);
    border: 3px solid #ffbf82;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin: 20px auto;
    position: relative;
}

.thank-you-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #28a745, #ffbf82, #a0d5ff, #ffc107);
    border-radius: 18px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

/* Check Icon */
.check-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: block;
    animation: checkBounce 0.6s ease-out;
}

@keyframes checkBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.check-icon circle {
    animation: circlePulse 2s ease-in-out infinite;
}

@keyframes circlePulse {
    0%, 100% {
        fill: #e6f7ee;
    }
    50% {
        fill: #d4f4dd;
    }
}

/* Thank You Title */
.thank-you-title {
    color: #28a745;
    font-size: 36px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(40, 167, 69, 0.3);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

/* Thank You Message */
.thank-you-message {
    color: #002c7f;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 20px;
}

/* Progress Container */
.progress-container {
    margin: 30px 0;
}

.progress {
    height: 30px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #0000005c;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border-radius: 15px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(40, 167, 69, 0.8);
    }
}

/* Countdown Container */
.countdown-container {
    background: linear-gradient(135deg, #a0d5ff 0%, #90c5ef 100%);
    border: 2px solid #0000005c;
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2);
}

.countdown-label {
    color: #220c82;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.countdown-timer {
    color: #ff2151;
    font-size: 48px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Courier New', monospace;
    animation: timerPulse 1s ease-in-out infinite;
}

@keyframes timerPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Order Info */
.order-info {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0 10px;
    text-align: left;
}

.order-info-title {
    color: #220c82;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.order-info-text {
    color: #002c7f;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF00FF 0%, #ff2151 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 15px 0;
    box-shadow: 0 4px 8px rgba(255, 0, 255, 0.4);
}

/* Thank You Page Responsive - Tablet */
@media only screen and (max-width: 770px) {
    .thank-you-container {
        padding: 35px 25px;
    }

    .check-icon {
        width: 90px;
        height: 90px;
    }

    .thank-you-title {
        font-size: 32px;
    }

    .thank-you-message {
        font-size: 15px;
    }

    .countdown-timer {
        font-size: 42px;
    }

    .order-info-title {
        font-size: 18px;
    }
}

/* Thank You Page Responsive - Mobile */
@media only screen and (max-width: 500px) {
    .thank-you-container {
        padding: 30px 20px;
        margin: 10px;
    }

    .check-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .thank-you-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .thank-you-message {
        font-size: 14px;
        padding: 0 10px;
        margin-bottom: 25px;
    }

    .progress-container {
        margin: 25px 0;
    }

    .progress {
        height: 25px;
    }

    .countdown-container {
        padding: 15px;
        margin: 25px 0;
    }

    .countdown-label {
        font-size: 14px;
    }

    .countdown-timer {
        font-size: 36px;
    }

    .order-info {
        padding: 15px;
        margin: 25px 0 10px;
    }

    .order-info-title {
        font-size: 17px;
    }

    .order-info-text {
        font-size: 14px;
    }
}

/* Payment Form Styles */
.payment-container form {
    text-align: left;
    margin-top: 20px;
}

/* Form Labels */
.form-label {
    color: #220c82;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Controls */
.form-control {
    background-color: white;
    border: 2px solid #03a9f4a8;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #220c82;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: #3f51b5;
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.2);
    background-color: #fafeff;
}

.form-control::placeholder {
    color: #7a7a7a;
    font-weight: 500;
}

/* Input Group */
.input-group {
    display: flex;
    align-items: stretch;
}

.input-group-text {
    background: linear-gradient(135deg, #a0d5ff 0%, #90c5ef 100%);
    border: 2px solid #03a9f4a8;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 700;
    color: #220c82;
    text-shadow: 1px 1px #00bcd4;
}

.input-group .form-control {
    border-radius: 0 8px 8px 0;
    border-left: none;
}

.input-group .form-control:focus {
    border-left: none;
}

/* Form Text Helper */
.form-text {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #002c7f;
    font-weight: 600;
    font-style: italic;
}

/* Margin Bottom for Form Groups */
.mb-3 {
    margin-bottom: 25px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF00FF 0%, #ff2151 100%);
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 12px;
    border: 2px solid #0000005c;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 15px rgba(255, 0, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(255, 0, 255, 0.5);
    background: linear-gradient(135deg, #ff2151 0%, #FF00FF 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Validation Styles */
.was-validated .form-control:invalid {
    border-color: #dc3545;
    background-image: none;
}

.was-validated .form-control:valid {
    border-color: #28a745;
    background-image: none;
}

.was-validated .input-group .form-control:invalid {
    border-left-color: #dc3545;
}

.was-validated .input-group .form-control:valid {
    border-left-color: #28a745;
}

/* Invalid Feedback */
.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 6px;
    font-size: 13px;
    color: #dc3545;
    font-weight: 700;
    background-color: #ffe6e6;
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}

/* Valid Feedback (Optional) */
.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 6px;
    font-size: 13px;
    color: #28a745;
    font-weight: 700;
    background-color: #e6ffe6;
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid #28a745;
}

.was-validated .form-control:valid ~ .valid-feedback {
    display: block;
}

/* Focus States with Animation */
.form-control:focus {
    animation: inputFocus 0.3s ease;
}

@keyframes inputFocus {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* Form Responsive - Tablet */
@media only screen and (max-width: 770px) {
    .form-label {
        font-size: 14px;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 15px;
    }

    .input-group-text {
        padding: 10px 12px;
        font-size: 15px;
    }

    .submit-btn {
        font-size: 17px;
        padding: 13px 35px;
    }
}

/* Form Responsive - Mobile */
@media only screen and (max-width: 500px) {
    .mb-3 {
        margin-bottom: 20px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-control {
        padding: 10px;
        font-size: 14px;
    }

    .input-group-text {
        padding: 10px;
        font-size: 14px;
    }

    .form-text {
        font-size: 12px;
    }

    .submit-btn {
        font-size: 16px;
        padding: 12px 30px;
    }

    .invalid-feedback,
    .valid-feedback {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Responsive Design - Mobile */
@media only screen and (max-width: 500px) {
    .panel.panel-info {
        width: 99%;
    }

    #top {
        padding: 10px 15px;
    }

    table.panel-chart tbody tr td:nth-child(3),
    table.panel-chart tbody tr td:nth-child(6),
    table.panel-chart tbody tr td:nth-child(9),
    table.panel-chart tbody tr td:nth-child(12),
    table.panel-chart tbody tr td:nth-child(15),
    table.panel-chart tbody tr td:nth-child(18) {
        font-size: 14px;
    }

    table.panel-chart tr td:nth-child(1),
    table.panel-chart tbody tr td:nth-child(2),
    table.panel-chart tbody tr td:nth-child(5),
    table.panel-chart tbody tr td:nth-child(8),
    table.panel-chart tbody tr td:nth-child(11),
    table.panel-chart tbody tr td:nth-child(14),
    table.panel-chart tbody tr td:nth-child(17),
    table.panel-chart tbody tr td:nth-child(4),
    table.panel-chart tbody tr td:nth-child(7),
    table.panel-chart tbody tr td:nth-child(10),
    table.panel-chart tbody tr td:nth-child(13),
    table.panel-chart tbody tr td:nth-child(16),
    table.panel-chart tbody tr td:nth-child(19) {
        font-size: 9px;
    }

    table.panel-chart th {
        font-size: 11px;
    }

    .fixed-refresh {
        font-size: 13px;
        padding: 5px 10px;
    }

    .button2 {
        font-size: 14px;
        padding: 8px 20px;
    }

    .unlock-btn {
        font-size: 16px;
        padding: 10px 24px;
    }

    .market_dropdown_container {
        margin: 20px 0;
    }
    
    .market-dropdown {
        min-width: 180px;
        font-size: 14px;
        padding: 10px 30px 10px 15px;
    }

    .payment-container {
        padding: 20px 15px;
        margin: 10px;
    }

    .payment-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .amount-container {
        padding: 15px;
        margin: 20px 0;
    }

    .amount-label {
        font-size: 14px;
    }

    .amount-value {
        font-size: 32px;
    }

    .qr-code {
        width: 200px;
        padding: 12px;
    }

    .upi-id {
        font-size: 14px;
        padding: 10px;
    }

    .copy-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .payment-done-btn {
        font-size: 16px;
        padding: 12px 30px;
    }

    .copy-success {
        font-size: 14px;
        padding: 10px 15px;
    }
}