﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #948C86; /* Champagne background */
    color: #4b1f1f; /* Wine red */
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

h1, h2 {
    text-align: center;
    color: #4b1f1f; /* Wine red */
    text-shadow: 1px 1px 2px rgba(75, 31, 31, 0.2);
}

form {
    text-align: center;
    margin-bottom: 30px;
}

input[type=text], input[type=password], input[type=submit] {
    padding: 12px;
    margin: 8px;
    border: 2px solid #4b1f1f; /* Wine red */
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

input[type=text]:focus, input[type=password]:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(75, 31, 31, 0.5);
}

input[type=submit] {
    background-color: #4b1f1f; /* Wine red */
    color: #f9e8d2; /* Champagne */
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #6b2f2f; /* Lighter wine red on hover */
}

button {
    background-color: #e6c8a8; /* Champagne */
    color: #4b1f1f; /* Wine red */
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-right: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button:hover {
    background-color: #d4b59c; /* Darker champagne on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

#result {
    margin-top: 30px;
    padding: 15px;
    border: 2px solid #4b1f1f; /* Wine red */
    background-color: #fff; /* White background for result */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

a {
    display: block;
    text-align: center;
    margin-top: 25px;
    color: #4b1f1f; /* Wine red */
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

a:hover {
    color: #6b2f2f; /* Lighter wine red on hover */
    text-decoration: underline;
}

/* New styles for service controls */
.service-controls {
    background-color: #f0e6d9; /* Light champagne */
    border: 2px solid #4b1f1f; /* Wine red */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-controls h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #4b1f1f; /* Wine red */
}

/* Style for the access level display */
.access-level {
	text-align:center;
}
.access-level div {
	text-align:center;
    margin-left: auto;
    margin-right: auto;
    width:100%;

    
}
.access-level p {
}
.access-level a {
	margin:0 0 0 0;
}
.access-level table {
    width: 80%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}
  
.access-level td {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #4b1f1f; /* Wine red */
    background-color: #f9e8d2; /* Champagne */
    border-radius: 8px;
    display: inline-block;
    padding: 10px;
    margin: 5px;
    border: 1px solid #ddd;
}