/* Global styles */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('backgroundimage1.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    margin: 0;
}

h1 {
    color: #ff5733;
    font-size: 48px; /* Increased font size */
    margin-bottom: 50px;
}

.button-container {
    display: flex;
    gap: 20px;
}

button {
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    font-weight: bold; /* Make text bold */
}

button:hover {
    background-color: #0056b3;
}

button:nth-of-type(1) {
    color: black; /* Black color for "ADMINISTRATION" button */
}

button:nth-of-type(2) {
    color: gold; /* Gold color for "CUSTOMER" button */
}

/* Specific styles for customer.html */
.info-container p {
    color: gold; /* Maroon color for paragraph text */
    font-weight: bold; /* Make paragraph text bold */
    font-size: 18px; /* Increased font size for paragraph text */
}

/* Specific styles for customer.html */
.button-container .table-button:nth-of-type(2) {
    color: black; /* Black text color for Table 2 button */
}

/* Set text color to black for Table 3 to Table 7 buttons */
.button-container .table-button:nth-of-type(n+1) {
    color: black;
}