/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
}

.logo a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

/* Wizard Container */
.wizard-container {
    width: 90%;
    max-width: 760px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 2rem;
}

/* Wizard Progress Bar */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.step {
    text-align: center;
    flex-grow: 1;
    color: #aaa;
    position: relative;
}

.step .step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #eee;
    line-height: 30px;
    margin: 0 auto 0.5rem;
    font-weight: bold;
    color: #fff;
    background: #ccc;
}

.step.active .step-number {
    background-color: #007bff;
}

.step.completed .step-number {
    background-color: #28a745;
}

.step .step-label {
    font-size: 0.9rem;
}

.step.active .step-label, .step.completed .step-label {
    color: #333;
    font-weight: 600;
}


/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box; /* Important */
}

input:focus, select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

small {
    color: #888;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Google Sign-In Button */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: #4285F4;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: background-color 0.2s;
}

.btn-google:hover {
    background-color: #357ae8;
}

/* Divider */
.divider {
    text-align: center;
    margin: 1.5rem 0;
    color: #aaa;
    font-weight: bold;
}

/* File Upload Drop Zone */
.drop-zone {
    border: 2px dashed #ccc;
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.drop-zone.dragover {
    border-color: #007bff;
}

.file-input-label {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
}

#file-list {
    margin-top: 1rem;
}

.file-list-item {
    background: #f9f9f9;
    padding: 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}