body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

.form {
    text-align: center;
    background: white;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form h2 {
    margin-bottom: 20px;
    color: #333;
}

.form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.form button {
    width: 100%;
    background-color: #7b5400;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form button:hover {
    background-color: #593500;
}
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #ddd;
    background-color: #f8f8f8;
}
.dashboard-header .welcome {
    font-weight: bold;
    font-size: 1.4em;
}
.dashboard-header .logout a {
    color: #7b3700;
    text-decoration: none;
    font-weight: bold;
}
.dashboard-nav {
    display: flex;
    gap: 20px;
    padding: 15px 30px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}
.dashboard-nav a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}
.dashboard-nav a.active {
    color: #e65c0d;;
    border-bottom: 2px solid #7b3700;
    padding-bottom: 5px;
}
.dashboard-content {
    padding: 20px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    max-width: 600px;
    margin: auto;
}

/* Enhanced Form Appearance */
form label {
    display: block;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 1px;
}
form input,
form select {
    width: 100%;
    padding: 9px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #fff;
     margin-bottom: 1px; /* Add this line to reduce spacing between fields */
}
form input:focus,
form select:focus {
    border-color: #e65c0d;
    outline: none;
}
form button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #7b3700;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}
form button:hover {
    background-color: #5f3600;
}

/* Success/Error Message */
p {
    font-size: 0.95em;
    margin-top: 10px;
}
p[style*="color: red"] {
    background: #ffe0e0;
    padding: 8px;
    border-left: 4px solid red;
}
p[style*="color: green"] {
    background: #e0ffe7;
    padding: 8px;
    border-left: 4px solid rgb(194, 93, 11);
}

form a {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9em;
    font-style: italic;
    color: #7b3100;
    text-decoration: underline;
    transition: color 0.3s ease;
}

form a:hover {
    color: #593200;
    text-decoration: none;
}
.login-container {
            max-width: 400px;
            margin: 50px auto;
            padding: 30px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background-color: #f9f9f9;
        }
        .login-container h2 {
            text-align: center;
        }
        .login-container input {
            width: 100%;
            margin-bottom: 15px;
            padding: 10px;
        }
        .login-container button {
            width: 100%;
            padding: 10px;
            background: #4CAF50;
            color: #fff;
            border: none;
            cursor: pointer;
        }
        .login-container .error {
            color: rgba(230, 45, 12, 0.63);
            text-align: center;
            margin-bottom: 15px;
        }
        		
        .order-card {
            border: 1px solid #ddd;
            padding: 20px;
            margin-bottom: 15px;
            border-radius: 4px;
            background: #fdfdfd;
        }
        .order-card strong {
            display: block;
            margin-bottom: 5px;
        }
        .order-actions {
            margin-top: 10px;
        }
        .order-actions form {
            display: inline;
        }
        .order-actions button {
            margin-right: 10px;
            padding: 5px 10px;
            background: #007b5e;
            border: none;
            color: white;
            cursor: pointer;
            border-radius: 3px;
        }
        .order-actions button.cancel {
            background: #c9302c;
        }