body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #282c34;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

#signage-container {
    text-align: center;
    max-width: 80%;
}

#main-text {
    font-size: 5vw;
    margin-bottom: 20px;
}

#sub-text {
    font-size: 3vw;
    margin-bottom: 40px;
}

#image-display {
    max-width: 100%;
    max-height: 50vh;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Styles for Admin panel to keep it consistent */
.admin-container {
    background-color: #f4f4f4;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: auto;
}

.admin-form {
    display: flex;
    flex-direction: column;
}

.admin-form label {
    margin-top: 15px;
    font-weight: bold;
}

.admin-form input, .admin-form textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.admin-form button {
    margin-top: 20px;
    padding: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

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