:root{
    --bg-hex: #eeafccb3;
    --bg-rgba: rgba(238,175,204,0.702);
    --primary: #451b1c;
    --primary-contrast: #ffffff;
}

body {    
    font-family: Arial, sans-serif;
    margin: 0;
}


/* Table header slightly more opaque for contrast */
th {
    background-color: rgba(238,175,204,0.85) !important;
    color: #000 !important;
}

/* Alternate row tint */
tr:nth-child(even) {
    background-color: rgba(238,175,204,0.55) !important;
}

/* Interactive elements: buttons, inputs, links */
button,
input[type="submit"],
input[type="button"],
button[type="button"],
button[type="submit"] {
    background-color: var(--primary) !important;
    color: var(--primary-contrast) !important;
    border-color: var(--primary) !important;
    box-shadow: none;
}


/* Hover / focus states */
button:hover,
button:focus,
a:hover,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(69,27,28,0.12) !important;
    box-shadow: 0 0 0 4px rgba(69,27,28,0.06) !important;
}

/* Form borders and accents */
input[type="text"],
input[type="number"],
input[type="date"],
input[type="password"],
select,
textarea {
    border: 1px solid rgba(69,27,28,0.25) !important;
}

header, footer {
    background-color: #f8f8f8;
    padding: 10px 0;
    text-align: center;    
    border-bottom: 1px solid #ddd;
}

header {
    display: grid;
    grid-template-columns: auto 1fr;
}

header h1 {
    text-align: center;
}
header img {
    height: 100px;
    margin-left: 0;
    margin-right: auto
}


table {
    border: 1px solid #ccc;
    width: 100%;
    border-collapse: collapse;    
}
th, td {
    padding: 10px;
    text-align: left;    
    border: #ccc 1px solid;
}
th {
    background-color: #f2f2f2;
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}

input[type="text"], input[type="number"], input[type="password"], select {
    width: 100%;
    padding: 8px;
    margin: 4px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    width: 100%;
    height: 100px;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 24px auto;
    display: block;
}

input[type=date] {
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: block;
    width: 100%;
}

.home-buttons {
    margin-top: 30px;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}


a.button{    
    display: block;
    padding: 10px 20px;
    background: var(--bg-rgba);
    color: var(--primary);
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;    
}

.order-number {
    text-align: center
}

.form-group {
    margin-bottom: 15px;
}
