/* style.css - Final Version with 100px Logo */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    margin: 0;
    background-color: #FDFDFD;
    color: #555555;
}

.container {
    max-width: 600px;
    margin: 40px auto;
    padding: 25px 30px;
    background-color: #FDFDFD;
    border-radius: 8px;
    border: 1px solid #eeeeee;
}

/* Styles for Header with Logo */
.page-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.logo {
    width: 100px; /* <<< CHANGED from 45px */
    height: 100px; /* <<< CHANGED from 45px */
    margin-right: 15px; /* Adjust if more space needed */
    flex-shrink: 0;
}

.page-header h1 {
    margin-bottom: 0;
    margin-top: 0;
    flex-grow: 1;
    font-size: 1.8em;
    color: #121212;
    line-height: 1.3;
}

h2 {
    color: #121212;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 5px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555555;
}

textarea, input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
    color: #121212;
    background-color: #FDFDFD;
}

textarea::placeholder, input[type="email"]::placeholder {
    color: #999999;
}

button, .button {
    display: inline-block;
    background-color: #D63C3F;
    color: #FDFDFD !important;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s ease;
}

button:hover, .button:hover {
    background-color: #b82c30;
    text-decoration: none;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

a {
    color: #D63C3F;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid #eeeeee;
}

#steps-display ol {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

#steps-display li {
    margin-bottom: 10px;
    background-color: #f8f8f8;
    padding: 12px 15px;
    border-radius: 4px;
    border-left: 4px solid #D63C3F;
    color: #121212;
}
#steps-display li strong {
    color: #121212;
    margin-right: 8px;
}

#original-workflow-display {
    margin-bottom: 20px;
    padding: 12px 15px;
    background-color: #f0f0f0;
    border-left: 4px solid #cccccc;
    border-radius: 4px;
    color: #555555;
}
#original-workflow-display strong {
    color: #121212;
}

#error-message, #email-error-message {
    color: #D63C3F;
    font-weight: bold;
    margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.5em;
    }
    .logo {
        width: 70px;  /* <<< CHANGED from 40px (adjust as needed for mobile) */
        height: 70px; /* <<< CHANGED from 40px */
        margin-right: 10px;
    }
     .container {
        margin: 20px 10px;
        padding: 20px;
    }
    button, .button {
        padding: 10px 20px;
    }
}