* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-image: url('./tlo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    backdrop-filter: blur(5px);
    border-radius: 15px;
}

.wizard {
    background: #F8EEDC;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative; /* Added for absolute positioning context */
}

.banner-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    max-width: 200px;
    height: auto;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.step-indicators {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    margin-right: 220px; /* Give space for banner */
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    color: #666;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #e0e0e0;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.step:last-child::after {
    display: none;
}

.step.active {
    background-color: #4CAF50;
    color: white;
}

.step.completed {
    background-color: #4CAF50;
    color: white;
}

.step-content {
    position: relative;
    margin-top: 80px;  /* Add space for the banner */
}

/* First step specific spacing */
#step1 {
    margin-top: 100px;  /* Extra space for the first step to avoid banner overlap */
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.button-group {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

#results {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin: 20px 0;
}

.winner {
    color: #4CAF50;
    font-weight: bold;
}

.add-more-container {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    border: 2px dashed #4CAF50;
    border-radius: 8px;
    background-color: rgba(76, 175, 80, 0.3);
    position: relative;
    z-index: 1;
}

.add-more-button {
    background-color: white;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    padding: 12px 24px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.add-more-button:hover {
    background-color: #4CAF50;
    color: white;
}

.add-more-button span {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.layers-button-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.layer-btn {
    flex: 1;
    min-width: 80px;
    background-color: #fff;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.layer-btn:hover {
    background-color: #e8f5e9;
}

.layer-btn.selected {
    background-color: #4CAF50;
    color: white;
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .wizard {
        padding: 15px;
    }
    
    button {
        padding: 10px 20px;
    }
    
    .banner-container {
        position: static;
        margin: 0 auto 20px auto;
        max-width: 150px;
    }

    .step-indicators {
        margin-right: 0;  /* Reset margin on mobile */
    }
    
    .step-content {
        margin-top: 20px;  /* Less margin needed on mobile since banner is not absolute */
    }
    
    #step1 {
        margin-top: 20px;  /* Reset margin on mobile since banner is not absolute */
    }
}

.details-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.details-button:hover {
    background-color: #45a049;
}

#summary-results {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
}

#summary-results .winner {
    font-size: 2em;
    color: #4CAF50;
    font-weight: bold;
    margin: 15px 0;
    padding: 10px;
    border: 2px solid #4CAF50;
    border-radius: 8px;
    display: inline-block;
}

#detailed-results {
    margin-top: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

#detailed-results .winner {
    color: #4CAF50;
    font-weight: bold;
    padding: 5px 0;
}

/* Description Section Styles */
.description-section {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.description-section h1 {
    color: #4CAF50;
    margin-bottom: 20px;
}

.description-content {
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.6;
}

.description-content h2 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.description-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.description-content li {
    margin-bottom: 10px;
}

/* Start Button Styles */
.start-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.start-button:hover {
    background-color: #45a049;
}

/* Use Case Styles */
.use-case {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #4CAF50;
}

.use-case ul {
    padding-left: 20px;
    margin: 15px 0;
}

.use-case li {
    margin-bottom: 10px;
    list-style-type: disc;
}