/* program-7dni.css */
.detox-container {
    max-width: 600px;
    margin: 0 auto;
    color: #1f2937;
    padding: 1rem;
}

.day-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.day-card.completed {
    background: #ecfdf5;
    border-color: #10b981;
}

.day-number {
    font-size: 2rem;
    font-weight: 800;
    color: #e5e7eb;
    line-height: 1;
}

.day-card.completed .day-number {
    color: #10b981;
}

.day-content {
    flex: 1;
}

.day-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #1f2937;
}

.day-desc {
    font-size: 0.9rem;
    color: #6b7280;
}

.check-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #fff;
    font-size: 1.2rem;
}

.check-btn:hover {
    border-color: #10b981;
}

.day-card.completed .check-btn {
    background: #10b981;
    border-color: #10b981;
}

.progress-header {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 2rem;
    text-align: center;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-top: 1rem;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: #10b981;
    border-radius: 4px;
    transition: width 0.5s;
}