/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Basier Circle", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f4f4f4;
    color: #2f2f2f;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
}

/* Main content layout */
.main-content {
    flex-grow: 1;
    padding: 48px 40px 24px 40px;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
}
.single-column {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.section-desc {
    font-size: 1rem;
    color: #444;
    margin-bottom: 24px;
}
.card-list { display: flex; flex-direction: column; gap: 20px; }
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.04);
    padding: 24px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #ececec;
}
.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 2px;
}
.label {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    background: #ffe9b8;
    color: #b48a00;
    border-radius: 8px;
    padding: 2px 12px;
    margin-bottom: 8px;
}
.label.optional {
    background: #e6f7e6;
    color: #1a7f37;
}
.card-desc {
    font-size: 1rem;
    color: #444;
    margin-bottom: 8px;
}
.card-actions {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}
.btn-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #f78817;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.2s;
}
.btn-link i { font-size: 20px; }
.btn-link:active, .btn-link:focus { color: #c96a0a; }
.btn-link[disabled], .btn-link.disabled { color: #ccc; cursor: not-allowed; }
/* Help section */
.help-section {
    margin-top: 40px;
    font-size: 1rem;
    color: #444;
    text-align: center;
}
.help-section b { color: #2f2f2f; }
.help-section a { color: #2f2f2f; font-weight: 700; text-decoration: none; }
/* New styles for completed state */
.card.completed .card-title::after {
    content: "✓";
    color: #1a7f37;
    margin-left: 8px;
    font-size: 1.2rem;
}
.card.completed .btn-link {
    color: #1a7f37;
}
.card.completed .btn-link i {
    color: #1a7f37;
}
/* New button styles */
.start-discovery-btn {
    position: absolute;
    top: 5px;
    right: 40px;
    background: #f78817;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}
.start-discovery-btn:hover {
    background: #e67a0f;
}
.start-discovery-btn i {
    font-size: 20px;
}
@media (max-width: 768px) {
    .single-column { padding: 0 16px; }
    .start-discovery-btn { 
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-bottom: 24px;
    }
}