/* General body styling */
body {
    background-color: #f0f2f5; /* Light grey background to make the panel stand out */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333333; /* Black text */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 2rem;
    box-sizing: border-box;
}

/* The main white and orange block */
.main-panel {
    background-color: #ffffff; /* White background */
    width: 100%;
    max-width: 960px; /* Adjust as needed */
    min-height: 500px; /* Adjust to make it "big" */
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 6px solid #FFA500; /* Main orange theme color */
}

/* The placeholder area inside the main block */
.content-placeholder {
    border: 2px dashed #dddddd;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

/* Styling for the heading to use the orange theme color */
h1 {
    color: #FF8C00; /* A darker, vibrant orange */
    margin-top: 0;
}

p {
    line-height: 1.6;
}