.wchf-container {
    background: #fffaf9;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
    font-family: 'Arial', sans-serif;
}
.wchf-checklist.classic {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.wchf-checklist.timeline {
    display: flex;
    flex-direction: column;
    border-left: 3px solid #d4a9a3;
    margin-left: 1rem;
    padding-left: 1.5rem;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.wchf-checklist.timeline .wchf-item {
    position: relative;
}
.wchf-checklist.timeline .wchf-item::before {
    content: "";
    position: absolute;
    left: -1.55rem;
    top: 0.3rem;
    width: 14px;
    height: 14px;
    background: #d4a9a3;
    border-radius: 50%;
}
.wchf-item {
    background: #fefefe;
    border: 1px solid #d4a9a3;
    padding: 0.6rem 1rem;
    border-radius: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}
.wchf-item input {
    margin-right: 8px;
}
.wchf-item:hover {
    background: #f6e8e6;
}
.wchf-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
.wchf-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.wchf-form .wchf-field {
    display: flex;
    flex-direction: column;
}
.wchf-form label {
    margin-bottom: 0.3rem;
    font-weight: bold;
    font-size: 0.95rem;
}
.wchf-label-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}
.wchf-label-icon i {
    color: #d4a9a3;
}
.wchf-form input {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}
.wchf-form input:focus {
    border-color: #d4a9a3;
    outline: none;
    box-shadow: 0 0 0 2px #f4e1df;
}
#wchf-save {
    background-color: #d4a9a3;
    border: none;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 24px;
    cursor: pointer;
    margin-top: 1rem;
    align-self: flex-start;
    font-weight: bold;
    transition: background 0.3s;
}
#wchf-save:hover {
    background-color: #bb8b85;
}
#wchf-link-result {
    margin-top: 1.5rem;
}/* Timeline orizzontale */
.wchf-checklist.horizontal {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    position: relative;
}
.wchf-checklist.horizontal .wchf-item {
    min-width: 160px;
    border-radius: 16px;
    border: 2px solid #d4a9a3;
    text-align: center;
    padding: 1rem;
    background: #fff;
    position: relative;
    flex-shrink: 0;
}
.wchf-checklist.horizontal .wchf-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: #d4a9a3;
    transform: translateY(-50%);
}
.wchf-checklist.horizontal .wchf-item:last-child::after {
    display: none;
}

/* Banner "Crea la tua checklist" */
.wchf-banner {
    background: #fef1ef;
    border: 2px solid #d4a9a3;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin: 2rem auto;
    max-width: 700px;
    font-family: 'Arial', sans-serif;
}
.wchf-banner h2 {
    color: #a15f5a;
    margin-bottom: 1rem;
}
.wchf-banner p {
    color: #444;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}
.wchf-banner a {
    background: #d4a9a3;
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 24px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.wchf-banner a:hover {
    background: #bb8b85;
}