

.content {
    /* max-width: 1200px; */
    margin: 2rem auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
    color: #e91e63;
    text-align: center;
    margin-bottom: 30px;
}
.form-group {
    margin-bottom: 20px;
}
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
button {
    background-color: #e91e63;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}
button:hover {
    background-color: #c2185b;
}
.error {
    color: #f44336;
    margin: 15px 0;
    padding: 10px;
    background: #ffebee;
    border-radius: 4px;
}
.order-details {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.order-details h2 {
    color: #e91e63;
}
.detail-row {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}
.detail-label {
    width: 150px;
    font-weight: bold;
    color: #666;
}
.detail-value {
    flex: 1;
}
.status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: bold;
}
.status-0 { background: #f44336; color: white; }
.status-1 { background: #ff9800; color: white; }
.status-2 { background: #4caf50; color: white; }
.status-3 { background: #2196f3; color: white; }
.status-4 { background: #9e9e9e; color: white; }
.status-5 { background: #673ab7; color: white; }
.status-6 { background: #3f51b5; color: white; }
.status-7 { background: #009688; color: white; }
