/* General page styles */
html, body {
    color: #fff;
    background-color: #08679a;
    height: 100%; /* Make sure body takes full height */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: flex-start; /* Align content at the top */
}

/* Padding added to body to ensure logo visibility */
body {
    padding-top: 40px; /* Added padding to ensure the logo isn't cut off */
}

/* Logo */
#logo {
    background: url('/helix_logo.png') no-repeat center;
    height: 94px;
    width: 100%;
    margin-bottom: 30px; /* Added margin for spacing */
}

/* Main container */
#container {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box; /* Ensure padding is included in the width */
}

/* Message about the download */
#message {
    margin: 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5em; /* Slightly increased size */
    font-weight: 700;
    width: 100%;
}

/* Steps container */
#install_steps {
    width: 100%;
    display: flex;
    flex-direction: column; /* Stack the step containers vertically */
    align-items: center; /* Center the steps horizontally */
    gap: 40px; /* Space between each step container */
    background: none; /* Remove background from the container */
}

/* Each step card */
.step_container {
    display: flex;
    flex-direction: column; /* Stack the image and message vertically */
    align-items: center; /* Center align each step and its message */
    width: 90%;
    max-width: 400px; /* Limit the maximum width */
    background-color: #fff; /* White background for card */
    border-radius: 10px; /* Rounded corners */
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    color: #333;
}

/* Step images */
.step {
    width: 100%;
    height: 280px; /* Fixed height for step images */
    background-size: contain;
    background-position: center;
    background-color: #f9f9f9; /* Lighter background */
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Center and left positioning for specific steps */
.centered {
    background-position: center;
}

.left {
    background-position: top left;
    background-size: 200%;
}

/* Step messages */
.step_message {
    font-family: 'Open Sans', sans-serif;
    text-align: center; /* Center align the text */
    font-size: 1.1em;
    color: #555; /* Slightly lighter text for better readability */
}

/* Links for download and other buttons */
#download, #mdm_link, #agent_link {
    display: inline-block;
    background-color: #ff7f50; /* A modern, vibrant color */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease; /* Smooth transition */
}

/* Hover effect for download buttons */
#download:hover, #mdm_link:hover, #agent_link:hover {
    background-color: #ff5722; /* Darken on hover */
}

/* Optional styles for better responsiveness on smaller screens */
@media (max-width: 768px) {
    #container {
        width: 100%;
        padding: 10px;
    }

    .step_container {
        width: 100%;
        max-width: 100%; /* Full width for smaller screens */
    }

    .step {
        height: auto; /* Let the step image adjust its height */
    }
}

#step2 {
    background-image: url('/images/step2_default.png'); /* Default image for step2 */
}

#step3 {
    background-image: url('/images/step3_default.png'); /* Default image for step3 */
}