/* Frontend Styles for The Fine Printing Payment Portal */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1e293b;
}

.tfp-success-message {
    background-color: #dcfce7;
    border: 2px solid #86efac;
    color: #166534;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}


.tfp-success-message p {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    body {
        padding: 0;
    }

    .container {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .content {
        padding: 20px 15px;
    }

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