/* Base container that works with most themes */
.theme-order-form-container {
    max-width: 600px;
    margin: 2em auto;
    padding: 2em;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.theme-order-form {
    margin-top: 1.5em;
}

.theme-order-form .form-group {
    margin-bottom: 1.5em;
}

.theme-order-form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.theme-order-form input[type="text"],
.theme-order-form input[type="date"],
.theme-order-form input[type="number"] {
    width: 100%;
    padding: 0.75em;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.theme-order-submit {
    background-color: #4CAF50;
    color: white;
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.theme-order-submit:hover {
    background-color: #45a049;
}

.theme-order-error {
    color: #d63638;
    background: #f3e6e7;
    padding: 1em;
    margin: 1em 0;
    border: 1px solid #d63638;
    border-radius: 4px;
}

.theme-order-success {
    color: #00a32a;
    background: #e6f3e7;
    padding: 1em;
    margin: 1em 0;
    border: 1px solid #00a32a;
    border-radius: 4px;
}

.theme-order-details {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #eee;
}