/* Full-page American flag background */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: url('/images/flag.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Page container alignment */
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

/* Header styling */
h1 {
    margin: 0;
    font-size: 32px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.35);
	color: #c70000;
}

.small {
    margin-top: 5px;
    color: white;
}

/* Frosted-glass order box */
.order-box {
    margin: 30px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 18px rgba(0,0,0,0.30);
    text-align: left;
}

/* Form fields */
label {
    font-weight: bold;
    margin-top: 15px;
    display: block;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #aaa;
    font-size: 16px;
    box-sizing: border-box;
}

.row {
    display: flex;
    gap: 20px;
}

.col {
    flex: 1;
}

/* Preview box */
.preview {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
}

.preview-lines {
    margin-top: 8px;
    font-family: monospace;
    letter-spacing: 1px;
}

/* Payment instructions */
.payment-instructions {
    background: #fff3cd;
    border-left: 4px solid #e0ac00;
    padding: 10px;
    margin-top: 10px;
    display: none;
}

/* Buttons */
button {
    padding: 12px 24px;
    background: #1b4d89;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    background: #163f6f;
}

.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.price {
    font-weight: 700;
    font-size: 20px;
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 14px;
    color: #222;
}

/* Error & notes */
.error {
    color: #b00000;
    margin-top: 10px;
}

.note {
    margin-top: 10px;
}

}